This repository was archived by the owner on May 16, 2025. It is now read-only.
Initial Commit #21
This file contains hidden or 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 Build | |
on: push | |
jobs: | |
build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Build Debug APK | |
run: ./gradlew assembleDebug | |
- name: Publish Releases | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh config set prompt disabled | |
gh release create $(date +%s) -p app/build/outputs/apk/debug/app-debug.apk |