fix: CI: disable docker container uploads for branch!=master
This commit is contained in:
parent
61729c5fae
commit
5d03682c45
1 changed files with 1 additions and 1 deletions
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue