From 5d03682c45e8029bf7faf50ad720ef94cbf5103e Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Wed, 18 Oct 2023 13:22:17 +0530 Subject: [PATCH] fix: CI: disable docker container uploads for branch!=master --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 47e9ab55..fc1eb676 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -119,7 +119,7 @@ jobs: run: make test.integration - name: Login to DockerHub - if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'mCaptcha/mCaptcha' + if: github.ref == 'refs/heads/master' && github.event_name == 'push' && github.repository == 'mCaptcha/mCaptcha' uses: docker/login-action@v1 with: username: mcaptcha