We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d0dc0e commit 6c221c2Copy full SHA for 6c221c2
.github/workflows/deploy.yml
@@ -2,6 +2,8 @@ name: Deploy
2
3
on:
4
push:
5
+ tags:
6
+ - v*
7
paths:
8
- rockspecs/*.rockspec
9
@@ -51,7 +53,7 @@ jobs:
51
53
52
54
upload:
55
needs: [affected, build]
- if: ${{ needs.affected.outputs.rockspecs && github.ref == 'refs/heads/master' && github.repository == 'alerque/fluent-lua' }}
56
+ if: ${{ needs.affected.outputs.rockspecs && startsWith(github.ref, 'refs/tags/') && github.repository == 'alerque/fluent-lua' }}
57
strategy:
58
fail-fast: false
59
matrix:
0 commit comments