diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed70543..e053107 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,13 +44,14 @@ jobs: fi - name: Upload to GH release - uses: softprops/action-gh-release@v1 + uses: ncipollo/release-action@v1 with: - files: evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip + artifacts: evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip token: ${{ secrets.GH_ACTIONS_RELEASE_TOKEN }} - tag_name: ${{ github.ref }} + tag: ${{ github.ref }} name: Release ${{ github.ref }} body: | Release for ${{ matrix.os }} ${{ matrix.arch }} with Node.js ${{ matrix.node }} draft: false - prerelease: false \ No newline at end of file + prerelease: false + allowUpdates: true # This allows updating existing releases \ No newline at end of file