From 81de540ca595ead558f039f5c9b77766485f6f4e Mon Sep 17 00:00:00 2001 From: reggie Date: Wed, 2 Oct 2024 02:08:25 -0500 Subject: [PATCH] Revert "Use revision hash for release name" This reverts commit 4a3839a54d5533bd47564ec88f622c461fa22a8f. --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3d21dc6..18a20bb5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: - name: Get version info id: version_info run: | - echo "build_version=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT + echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT shell: bash - name: Create tag @@ -78,7 +78,7 @@ jobs: - name: Get version info id: version_info run: | - echo "build_version=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT + echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT shell: bash @@ -175,7 +175,7 @@ jobs: - name: Get version info id: version_info run: | - echo "build_version=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT + echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT #- name: Configure for release