Skip to content

Commit a43e369

Browse files
authored
Merge pull request #35 from aertje/cicd
Fix docker publish conditional
2 parents d1a88b2 + 4592e94 commit a43e369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
docker-publish:
5353
runs-on: ubuntu-latest
5454
needs: [test, docker-smoke-test]
55-
if: ${{ github.event_name == 'push' && startsWith('refs/tags/v', github.ref) }}
55+
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
5656
steps:
5757
- name: Checkout
5858
uses: actions/checkout@v2

0 commit comments

Comments
 (0)