This repository has been archived by the owner on Jul 7, 2024. It is now read-only.
Build Release #40
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: | |
versionName: | |
required: true | |
description: This releases version name | |
default: "1.0.0" | |
versionCode: | |
required: true | |
description: This releases version code | |
default: "1000" | |
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: Set Version | |
uses: chkfung/[email protected] | |
with: | |
gradlePath: app/build.gradle.kts | |
versionCode: ${{github.event.inputs.versionCode}} | |
versionName: ${{github.event.inputs.versionName}} | |
- 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="${{ github.event.inputs.versionCode }}" | |
git tag "$tag" | |
git push origin "$tag" | |
gh release create "$tag" \ | |
--title "${{ github.event.inputs.versionName }}" \ | |
--generate-notes \ | |
./Manager.apk | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' |