Skip to content

Commit 07cef6c

Browse files
Changed!: Use dot . as tags separator instead of dash - for github release source and debug build type in the apk version tag
This is done to be consistent with semver build metadata tags. For example `github-debug` will now be `github.debug`. - https://semver.org/#spec-item-10
1 parent 32614b8 commit 07cef6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/github_action_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fi
3636
3737
APK_DIR_PATH="./app/build/outputs/apk/debug"
38-
APK_VERSION_TAG="$RELEASE_VERSION_NAME-github-debug" # Note the "-", GITHUB_SHA will already have "+" before it
38+
APK_VERSION_TAG="$RELEASE_VERSION_NAME.github.debug" # Note the ".", GITHUB_SHA will already have "+" before it
3939
APK_BASENAME_PREFIX="termux-widget_$APK_VERSION_TAG"
4040
4141
# Used by upload step later

.github/workflows/github_release_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fi
3535
3636
APK_DIR_PATH="./app/build/outputs/apk/debug"
37-
APK_VERSION_TAG="$RELEASE_VERSION_NAME+github-debug"
37+
APK_VERSION_TAG="$RELEASE_VERSION_NAME+github.debug"
3838
APK_BASENAME_PREFIX="termux-widget_$APK_VERSION_TAG"
3939
4040
echo "Building APK file for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag"

0 commit comments

Comments
 (0)