diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e176f45..a42a3dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -456,21 +456,15 @@ jobs: - name: Upload to release (Unix) if: runner.os != 'Windows' - uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref_name }} - files: dist/${{ matrix.artifact }}.tar.gz + run: gh release upload "${{ github.ref_name }}" dist/${{ matrix.artifact }}.tar.gz --clobber - name: Upload to release (Windows) if: runner.os == 'Windows' - uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref_name }} - files: dist/${{ matrix.artifact }}.zip + run: gh release upload "${{ github.ref_name }}" dist/${{ matrix.artifact }}.zip --clobber build-docker: needs: