1
0
Fork 0
forked from lthn/blockchain

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.
This commit is contained in:
Snider 2025-10-01 18:19:49 +01:00
parent ba3296cec6
commit f5b66b4fd9
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -15,7 +15,7 @@ TESTNET:= 0
STATIC:= 0
BUILD_TYPE ?=Release
BUILD_VERSION:=6.0.1
BUILD_FOLDER:=build/Release
BUILD_FOLDER:=build/release
# -----------------------------------------------------------------
# Unixlike systems (Linux, macOS, *BSD, etc.)