We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f8b022 commit 29507b3Copy full SHA for 29507b3
1 file changed
.github/workflows/ci.yml
@@ -196,7 +196,7 @@ jobs:
196
197
publish:
198
name: Publish the binary
199
- if: ${{ contains(github.ref, '/refs/tags/v') }}
+ if: ${{ github.ref_type == 'tag' }}
200
needs:
201
- setup
202
- test
@@ -205,7 +205,7 @@ jobs:
205
env:
206
QUAY_USER: ${{ secrets.QUAY_USER }}
207
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
208
- TAG: ${{ github.ref }}
+ TAG: ${{ github.ref_name }}
209
210
steps:
211
- uses: actions/checkout@v3
0 commit comments