remove unused permissions #27
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build Docker image | |
run: | | |
docker build -t builder docker/ | |
- name: Build apk | |
run: | | |
docker run -v ./:/work -w /work builder ./scripts/build.sh full | |
- name: Archive apk | |
uses: actions/upload-artifact@v4 | |
with: | |
name: android-release.apk | |
path: android/build/outputs/apk/release/android-release.apk | |
- name: Archive libs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libs | |
path: android/libs |