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