Allow MAS build to be repeated more easily (#2595)

This commit is contained in:
Devin Binnie 2023-03-08 13:59:41 -05:00 committed by GitHub
parent 4e011a1d4a
commit 1d4ad79cba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,8 +9,8 @@ if [ "$BUILD_VERSION" == "" ]; then
BUILD_VERSION=$STABLE_VERSION BUILD_VERSION=$STABLE_VERSION
fi fi
if [ "$CIRCLE_BUILD_NUM" != "" ]; then if [ "$GITHUB_RUN_ID" != "" ]; then
BUILD_VERSION=$CIRCLE_BUILD_NUM BUILD_VERSION="${GITHUB_RUN_ID}${GITHUB_RUN_ATTEMPT}"
fi fi
temp_file="$(mktemp -t electron-builder.json)" temp_file="$(mktemp -t electron-builder.json)"