add README.md #20
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
tags: [ v* ] | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 0 | |
- name: Write key | |
if: ${{ ( github.event_name != 'pull_request' && github.ref == 'refs/heads/master' ) || github.ref_type == 'tag' }} | |
run: | | |
if [ ! -z "${{ secrets.KEY_STORE }}" ]; then | |
echo storePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> keystore.properties | |
echo keyAlias='${{ secrets.ALIAS }}' >> keystore.properties | |
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> keystore.properties | |
echo storeFile=$PWD/'key.jks' >> keystore.properties | |
echo '${{ secrets.KEY_STORE }}' | base64 --decode > key.jks | |
fi | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build with Gradle | |
run: | | |
chmod +x ./gradlew | |
./gradlew assembleDebug | |
- name: Upload release | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "MyInjector" | |
path: "./app/build/outputs/apk/debug/*.apk" | |
compression-level: 9 |