lune-packaging/.github/workflows/android.yaml

26 lines
540 B
YAML
Raw Normal View History

2023-09-01 09:23:36 +01:00
name: Build for Android
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
2023-09-01 09:24:21 +01:00
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
fetch-tags: true
- name: Install rustup
run: "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y"
- name: Build routine
2023-09-01 09:28:20 +01:00
run: "chmod +x package/android/build.sh && package/android/build.sh"