This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
Bump version to 2.5.0 #802
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: Android | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout compat | |
uses: actions/checkout@v4 | |
with: | |
repository: SanmerApps/ServiceManagerCompat | |
path: compat | |
- name: Set up signing key | |
if: github.ref == 'refs/heads/main' | |
run: | | |
if [ ! -z "${{ secrets.KEY_STORE }}" ]; then | |
echo keyStorePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> signing.properties | |
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> signing.properties | |
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> signing.properties | |
echo keyStore='${{ github.workspace }}/key.jks' >> signing.properties | |
echo ${{ secrets.KEY_STORE }} | base64 --decode > ${{ github.workspace }}/key.jks | |
fi | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 21 | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
validate-wrappers: true | |
gradle-home-cache-cleanup: true | |
- name: Build dependencies | |
working-directory: compat | |
run: ./gradlew publishToMavenLocal | |
- name: Build with Gradle | |
run: ./gradlew assembleRelease | |
- name: Get release name | |
if: success() && github.ref == 'refs/heads/main' | |
id: release-name | |
run: | | |
name=`ls app/build/outputs/apk/release/*.apk | awk -F '(/|.apk)' '{print $6}'` && echo "name=${name}" >> $GITHUB_OUTPUT | |
- name: Upload built apk | |
if: success() && github.ref == 'refs/heads/main' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.release-name.outputs.name }} | |
path: app/build/outputs/apk/release/*.apk | |
- name: Upload mappings | |
if: success() && github.ref == 'refs/heads/main' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mappings | |
path: app/build/outputs/mapping/release |