Skip to content

Update Scripts files #25

Update Scripts files

Update Scripts files #25

Workflow file for this run

name: Build Debug APK
on:
push:
branches: [ "beta" ]
workflow_dispatch:
jobs:
build:
name: Build Debug APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 18
uses: actions/setup-java@v4
with:
java-version: '18'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Get application version name
run: echo "VERSION_NAME=$(${{github.workspace}}/gradlew -q printVersionName)" >> $GITHUB_ENV
- name: Bump application version code
uses: chkfung/[email protected]
with:
gradlePath: app/build.gradle.kts
versionCode: ${{github.run_number}}
versionName: "${{ env.VERSION_NAME }} Dev (#${{github.run_number}})"
- name: Write sign info
if: github.repository == 'DHD2280/Oxygen-Customizer'
run: |
if [ ! -z "${{ secrets.KEYSTORE }}" ]; then
echo storePassword='${{ secrets.KEYSTORE_PASSWORD }}' >> keystore.properties
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> keystore.properties
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> keystore.properties
echo storeFile='${{ github.workspace }}/key.jks' >> keystore.properties
echo ${{ secrets.KEYSTORE }} | base64 --decode > ${{ github.workspace }}/key.jks
fi
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: "Oxygen Customizer v${{ env.VERSION_NAME }} Dev (#${{github.run_number}})"
path: app/build/outputs/apk/debug/*.apk
if-no-files-found: error