Skip to content

Commit

Permalink
docker push on workflow manual dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau committed Mar 27, 2024
1 parent 64c11a3 commit ea2b1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Push images
run: |
if ${{ github.event_name == 'push' || github.event_name == 'schedule' }} && ${{ github.ref == 'refs/heads/master' }}; then
if ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}} && ${{ github.ref == 'refs/heads/master' }}; then
docker login -u maxgimeno -p ${{ secrets.PASSWD }}
bash -x ./push.sh ${{ matrix.test_platform }}
else
Expand Down

0 comments on commit ea2b1ea

Please sign in to comment.