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 af5bd9f commit 76e91aaCopy full SHA for 76e91aa
.github/workflows/windows.yml
@@ -163,7 +163,9 @@ jobs:
163
164
- name: Upload ARM64 to Release
165
uses: svenstaro/upload-release-action@v2
166
- if: github.event_name == 'release' && github.event.action == 'published'
+ if: |
167
+ (github.event_name == 'release' && github.event.action == 'published') ||
168
+ (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
169
with:
170
repo_token: ${{ secrets.GITHUB_TOKEN }}
171
tag: ${{ github.ref }}
0 commit comments