From f59756da40aab2c2218e55d355ad7dab99240c1b Mon Sep 17 00:00:00 2001 From: tkmxqrdxddd Date: Tue, 17 Mar 2026 20:59:06 +0100 Subject: [PATCH] fix: use gh CLI to upload to release --- .github/workflows/release.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57747f4..90aa53d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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