From 364e36a98b9958dc81edcc59a13ba323f36840fb Mon Sep 17 00:00:00 2001 From: Marcin Date: Tue, 11 Jun 2024 18:06:09 -0700 Subject: [PATCH] revert back to old release plugin for latest --- .github/workflows/build_continuous.yaml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_continuous.yaml b/.github/workflows/build_continuous.yaml index 7b9c116..d2df423 100644 --- a/.github/workflows/build_continuous.yaml +++ b/.github/workflows/build_continuous.yaml @@ -37,17 +37,12 @@ jobs: mkdir -p release-bin/ cp r2modman-headless release-bin/r2modman-headless-linux-amd64 - - name: Tag Latest - run: | - git tag latest --force - git push origin latest --force - - - name: Release - uses: softprops/action-gh-release@v2 + - uses: marvinpinto/action-automatic-releases@latest with: - tag_name: "refs/tags/latest" + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" prerelease: true - fail_on_unmatched_files: true + title: "Development Build" files: | LICENSE - release-bin/** \ No newline at end of file + release-bin/* \ No newline at end of file