Create Release Build #3
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: Create Release Build | |
on: | |
workflow_dispatch: | |
inputs: | |
changelog: | |
description: 'Changelog' | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Build APK with Gradle | |
run: ./gradlew assembleDebug | |
- name: extract version code and version name | |
run: | | |
echo "VERSION_NAME="$(grep "versionName" app/build.gradle | awk '{print $2}' | sed 's/"//g') >> $GITHUB_ENV | |
echo "VERSION_CODE="$(grep "versionCode" app/build.gradle | awk '{print $2}') >> $GITHUB_ENV | |
- name: create tag and release on GitHub | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ env.VERSION_CODE }} | |
name: ${{ env.VERSION_NAME }} | |
body: ${{ github.event.inputs.changelog }} | |
files: | | |
app/build/outputs/apk/debug/app-arm64-v8a-debug.apk | |
app/build/outputs/apk/debug/app-armeabi-v7a-debug.apk | |
app/build/outputs/apk/debug/app-x86-debug.apk | |
app/build/outputs/apk/debug/app-x86_64-debug.apk | |
app/build/outputs/apk/debug/app-universal-debug.apk |