Skip to content

Commit

Permalink
Release build permanent copy into r### tag in addition to latest tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ThreeDeeJay authored Jan 23, 2025
1 parent 91bdfcd commit 310e2fe
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/Untagged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*"
files: "Release/*"

0 comments on commit 310e2fe

Please sign in to comment.