From 310e2feab8500952bd0bb59d9637cba110047ef3 Mon Sep 17 00:00:00 2001 From: 3DJ <71472458+ThreeDeeJay@users.noreply.github.com> Date: Thu, 23 Jan 2025 02:52:23 -0500 Subject: [PATCH] Release build permanent copy into r### tag in addition to latest tag --- .github/workflows/Untagged.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Untagged.yaml b/.github/workflows/Untagged.yaml index 5ec0933..9ecf24c 100644 --- a/.github/workflows/Untagged.yaml +++ b/.github/workflows/Untagged.yaml @@ -133,11 +133,20 @@ jobs: 7z a DSOAL.zip ./DSOAL/* 7z a DSOAL+HRTF.zip ./DSOAL+HRTF/* - - name: GitHub pre-release + - name: GitHub pre-release - r${{needs.Build.outputs.DSOALCommitCount}} tag + uses: "slord399/action-automatic-releases@v1.0.1" + with: + repo_token: "${{secrets.GITHUB_TOKEN}}" + automatic_release_tag: "r${{needs.Build.outputs.DSOALCommitCount}}" + prerelease: true + title: "DSOAL r${{needs.Build.outputs.DSOALCommitCount}}@${{needs.Build.outputs.DSOALCommitHashShort}} + OpenAL Soft r${{needs.Build.outputs.OpenALSoftCommitCount}}@${{needs.Build.outputs.OpenALSoftCommitHashShort}}" + files: "Release/*" + + - name: GitHub pre-release - latest tag uses: "slord399/action-automatic-releases@v1.0.1" with: repo_token: "${{secrets.GITHUB_TOKEN}}" automatic_release_tag: "latest-${{needs.Build.outputs.DSOALBranch}}" prerelease: true title: "DSOAL r${{needs.Build.outputs.DSOALCommitCount}}@${{needs.Build.outputs.DSOALCommitHashShort}} + OpenAL Soft r${{needs.Build.outputs.OpenALSoftCommitCount}}@${{needs.Build.outputs.OpenALSoftCommitHashShort}}" - files: "Release/*" \ No newline at end of file + files: "Release/*"