Build and Release #15
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: Build Release | |
on: | |
workflow_dispatch: | |
inputs: | |
beta: | |
type: boolean | |
description: Is beta? | |
draft: | |
type: boolean | |
description: Is draft? | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Setup Android SDK | |
uses: android-actions/[email protected] | |
- name: Extract Version Name | |
id: extract_version | |
run: | | |
versionName=$(grep '^ *versionName' app/build.gradle.kts | sed -E 's/^ *versionName *= *"([^"]+)".*/\1/') | |
echo "VERSION_NAME=${versionName}" >> $GITHUB_ENV | |
- name: Set Version | |
uses: chkfung/[email protected] | |
with: | |
gradlePath: app/build.gradle.kts | |
versionCode: ${{ env.VERSION_NAME }} | |
versionName: ${{ env.VERSION_NAME }} | |
- name: Build Signed APK | |
run: | | |
echo "${{ secrets.keystore }}" | base64 -d > $GITHUB_WORKSPACE/signing-key.jks | |
chmod +x ./gradlew | |
./gradlew packageReleaseUniversalApk -Pandroid.injected.signing.store.file=$GITHUB_WORKSPACE/signing-key.jks -Pandroid.injected.signing.store.password=${{ secrets.keystore_password }} -Pandroid.injected.signing.key.alias=${{ secrets.key_alias }} -Pandroid.injected.signing.key.password=${{ secrets.key_password }} | |
- name: Release | |
run: | | |
mv app/build/outputs/apk_from_bundle/release/app-release-universal.apk ./Manager.apk | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
tag="${{ env.VERSION_NAME }}" | |
git tag "$tag" | |
git push origin "$tag" | |
gh release create "$tag" \ | |
--title "${{ env.VERSION_NAME }}" \ | |
--generate-notes \ | |
./Manager.apk \ | |
--prerelease=${{ github.event.inputs.beta }} \ | |
--draft=${{ github.event.inputs.draft }} | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' |