v0.8.0 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Release Build | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.GITHUB_REF }} | |
- name: Build and upload files to release | |
shell: bash {0} | |
run: | | |
exit_on_error() { | |
echo "$1" | |
echo "Deleting '$RELEASE_VERSION_NAME' release and '$GITHUB_REF' tag" | |
hub release delete "$RELEASE_VERSION_NAME" | |
git push --delete origin "$GITHUB_REF" | |
exit 1 | |
} | |
if [ -z "$JAVA_HOME_17_X64" ] || [ ! -f "$JAVA_HOME_17_X64/bin/javac" ] || [ ! -x "$JAVA_HOME_17_X64/bin/javac" ]; then | |
exit_on_error "jdk-17 binary not found at path '$JAVA_HOME_17_X64/bin/javac' or is not executable." | |
fi | |
echo "Setting vars" | |
RELEASE_VERSION_NAME="${GITHUB_REF/refs\/tags\//}" | |
if ! printf "%s" "${RELEASE_VERSION_NAME/v/}" | grep -qP '^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$'; then | |
exit_on_error "The release version '${RELEASE_VERSION_NAME/v/}' is not a valid version as per semantic version '2.0.0' spec in the format 'major.minor.patch(-prerelease)(+buildmetadata)'. https://semver.org/spec/v2.0.0.html." | |
fi | |
APK_DIR_PATH="./app/build/outputs/apk/debug" | |
APK_VERSION_TAG="$RELEASE_VERSION_NAME+github.debug" | |
APK_BASENAME_PREFIX="termux-boot_$APK_VERSION_TAG" | |
echo "Building APK file for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag" | |
export TERMUX_BOOT_APP_BUILD__APK_VERSION_TAG="$APK_VERSION_TAG" # Used by app/build.gradle | |
export GRADLE_OPTS="-Dorg.gradle.java.home=$JAVA_HOME_17_X64" | |
if ! ./gradlew assembleDebug; then | |
exit_on_error "Build failed for '$RELEASE_VERSION_NAME' release with '$APK_VERSION_TAG' tag." | |
fi | |
echo "Validating APK file" | |
if ! test -f "$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk"; then | |
files_found="$(ls "$APK_DIR_PATH")" | |
exit_on_error "Failed to find built APK file at '$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk'. Files found: "$'\n'"$files_found" | |
fi | |
echo "Generating checksums-sha256.txt file" | |
if ! (cd "$APK_DIR_PATH"; sha256sum "${APK_BASENAME_PREFIX}.apk" > checksums-sha256.txt); then | |
exit_on_error "Generate checksums-sha256.txt file failed for '$RELEASE_VERSION_NAME' release." | |
fi | |
echo "checksums-sha256.txt:"$'\n```\n'"$(cat "$APK_DIR_PATH/checksums-sha256.txt")"$'\n```' | |
echo "Uploading files to release" | |
if ! gh release upload "$RELEASE_VERSION_NAME" \ | |
"$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk" \ | |
"$APK_DIR_PATH/checksums-sha256.txt" \ | |
; then | |
exit_on_error "Upload files to release failed for '$RELEASE_VERSION_NAME' release." | |
fi |