From c254b729b3a16c1d73836c7b52f5196882848f02 Mon Sep 17 00:00:00 2001 From: Aemiii91 <44569252+Aemiii91@users.noreply.github.com> Date: Sat, 6 Jan 2024 18:38:00 +0100 Subject: [PATCH] Update pre-release.yml --- .github/workflows/pre-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 9e9acc87a..61bd317d8 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -32,12 +32,12 @@ jobs: echo "SHA_SHORT=$(git log -n 1 --pretty=format:"%h" origin/main)" >> $GITHUB_ENV - name: Print version run: | - echo "Onion-v${{ env.BUILD_VERSION }}-beta-${{ env.SHA_SHORT }}" + echo "Onion-v${{ env.BUILD_VERSION }}-${{ env.SHA_SHORT }}" - name: Build release shell: bash run: | source /root/.bashrc - VERSION_OVERRIDE=${{ env.BUILD_VERSION }}-beta-${{ env.SHA_SHORT }} make release + VERSION_OVERRIDE=${{ env.BUILD_VERSION }}-${{ env.SHA_SHORT }} make release - uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} @@ -45,4 +45,4 @@ jobs: prerelease: true title: "Onion V${{ env.BUILD_VERSION }}" files: | - release/Onion-v${{ env.BUILD_VERSION }}-beta-${{ env.SHA_SHORT }}.zip + release/Onion-v${{ env.BUILD_VERSION }}-${{ env.SHA_SHORT }}.zip