From a6d176c033c23ded71872f13b6e06081c0319b64 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 13 Aug 2025 10:08:23 -0400 Subject: [PATCH] actions: move to maintained action for publish. Fixes #1782 --- .github/workflows/build.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9bada53b..fd10bed3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1011,12 +1011,14 @@ jobs: echo "Date version: ${dateversion}" echo "dateversion=${dateversion}" >> $GITHUB_OUTPUT - - uses: "marvinpinto/action-automatic-releases@latest" - name: Publish draft release - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "${{ steps.dateversion.outputs.dateversion }}" - prerelease: false - draft: true - files: | + - name: Publish draft release + uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 + draft: true + prerelease: false + tag_name: "${{ steps.dateversion.outputs.dateversion }}" + overwrite_files: true + fail_on_unmatched_files: true + files: | gam-binaries/* + +