54 lines
1.8 KiB
YAML
54 lines
1.8 KiB
YAML
|
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: set up JDK 17
|
||
|
uses: actions/setup-java@v2
|
||
|
with:
|
||
|
java-version: 17
|
||
|
distribution: 'temurin'
|
||
|
cache: 'gradle'
|
||
|
|
||
|
- name: Set Version
|
||
|
uses: chkfung/android-version-actions@v1.1
|
||
|
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 assembleRelease -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: |
|
||
|
git config --local user.email "actions@github.com"
|
||
|
git config --local user.name "GitHub Actions"
|
||
|
tag="${{ github.event.inputs.versionCode }}"
|
||
|
git tag "$tag"
|
||
|
git push origin "$tag"
|
||
|
gh release create "$tag" \
|
||
|
--title "v${{ github.event.inputs.versionName }}" \
|
||
|
--generate-notes \
|
||
|
app/build/outputs/apk/release/app-release.apk#Manager.apk
|
||
|
env:
|
||
|
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
|