ui(refactor pt.1): Migrate base app theme, settingsAdapter
, MainActivity
to material3
#37
Workflow file for this run
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Install Ninja Build | |
run: | | |
sudo apt-get install -y ninja-build | |
ln -s /usr/bin/ninja . | |
- name: Build | |
run: | | |
cd ./Source/Android | |
chmod +x ./gradlew | |
./gradlew assembleRelease | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-release.apk | |
path: ./Source/Android/app/build/outputs/apk/release/app-release.apk |