This repository has been archived by the owner on May 3, 2024. It is now read-only.
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 and release uplink-android packages | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-release: | |
name: Build release | |
runs-on: ubuntu-latest | |
container: | |
image: bytebeamio/rust-android | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Build with gradle | |
run: JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64/ ./gradlew :buildArtifacts | |
- name: Upload release archive | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
build/release/*.tar.gz | |
build/release/uplink_*.aar | |