fix: use gh CLI to upload to release

This commit is contained in:
tkmxqrdxddd
2026-03-17 20:59:06 +01:00
parent 135ae0e244
commit f59756da40

View File

@@ -81,7 +81,9 @@ jobs:
path: davinci-video-converter_*.deb path: davinci-video-converter_*.deb
- name: Upload DEB package to Release - name: Upload DEB package to Release
uses: softprops/action-gh-release@v1 env:
with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
files: davinci-video-converter_*.deb run: |
append_body: true for file in davinci-video-converter_*.deb; do
gh release upload ${{ github.ref_name }} "$file" --clobber
done