Skip to content

Commit

Permalink
Merge pull request #35 from aertje/cicd
Browse files Browse the repository at this point in the history
Fix docker publish conditional
  • Loading branch information
aertje authored Apr 19, 2021
2 parents d1a88b2 + 4592e94 commit a43e369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
docker-publish:
runs-on: ubuntu-latest
needs: [test, docker-smoke-test]
if: ${{ github.event_name == 'push' && startsWith('refs/tags/v', github.ref) }}
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit a43e369

Please sign in to comment.