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