forked from getodk/collect
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add github workflow for custom release builds
- Loading branch information
1 parent
706125d
commit f4afced
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Workflow to deploy custom builds on ODK Collect | ||
|
||
name: 🔧 Build and Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
# Allow manual trigger (workflow_dispatch) | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_upload_apk: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
container: | ||
image: docker.io/cimg/android:2023.10.1 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Add Robolectric Deps | ||
run: ./download-robolectric-deps.sh | ||
|
||
- name: Compile Code | ||
run: ./gradlew assembleDebug | ||
|
||
- name: Install Github CLI | ||
run: | | ||
sudo apt update | ||
sudo apt install --no-install-recommends -y gh | ||
- name: Build & Upload APK | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
./gradlew assembleSelfSignedRelease | ||
apk_path=$(find ./collect_app/build/outputs/apk/selfSignedRelease -name '*.apk' -type f) | ||
echo "Generated APK file: ${apk_path}" | ||
gh release upload ${{ github.event.release.tag_name }} "${apk_path}" |