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 f4b0008 commit a7f0774Copy full SHA for a7f0774
.github/workflows/signaloid-python.yaml
@@ -90,8 +90,10 @@ jobs:
90
path: |
91
./dist/*
92
93
- - name: Upload to release
+ # Upload the artifact to the GitHub release
94
+ - name: Upload Release Asset
95
if: ${{ github.event_name == 'release' && startsWith(matrix.args.host, 'ubuntu') }}
- run: gh release create "v${{ github.event.release.tag_name }}" dist/*
96
+ run: |
97
+ gh release upload ${{ github.event.release.tag_name }} dist/*
98
env:
- GH_TOKEN: ${{ github.token }}
99
+ GITHUB_TOKEN: ${{ github.token }}
0 commit comments