mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
19 lines
452 B
YAML
19 lines
452 B
YAML
name: android
|
|
description: Build for android
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: extractions/setup-just@v1
|
|
- name: Install nightly toolchain
|
|
shell: bash
|
|
run: just nightly-toolchain-android
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Build
|
|
shell: bash
|
|
run: just build-android
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: maplibre-rs.apk
|
|
path: target/debug/apk/maplibre-rs-demo.apk
|