From f5b66b4fd996631e2215d1a267e9466ef107291d Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 1 Oct 2025 18:19:49 +0100 Subject: [PATCH] Update artifact tag suffix and build folder name Appends 'alpha' to artifact tag suffix for pull requests in the GitHub Action and changes the build folder name from 'build/Release' to 'build/release' in the Makefile for consistency. --- .github/actions/upload-artifacts/action.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/upload-artifacts/action.yml b/.github/actions/upload-artifacts/action.yml index 2ffb4387..b3872d6d 100644 --- a/.github/actions/upload-artifacts/action.yml +++ b/.github/actions/upload-artifacts/action.yml @@ -38,7 +38,7 @@ runs: echo "version=${VERSION}" >> "$GITHUB_OUTPUT" if [ "${{ github.event_name }}" == "pull_request" ]; then - TAG_SUFFIX="-${{ github.event.number }}" + TAG_SUFFIX="-${{ github.event.number }}alpha" PRERELEASE=true elif [ "${{ inputs.chain-network }}" != "mainnet" ]; then TAG_SUFFIX="-beta" diff --git a/Makefile b/Makefile index 3e3d72ef..b056b86c 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ TESTNET:= 0 STATIC:= 0 BUILD_TYPE ?=Release BUILD_VERSION:=6.0.1 -BUILD_FOLDER:=build/Release +BUILD_FOLDER:=build/release # ----------------------------------------------------------------- # Unix‑like systems (Linux, macOS, *BSD, etc.)