mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
feat(android): include CI for android builds
This commit is contained in:
parent
427609a501
commit
cb221cee3d
1 changed files with 26 additions and 0 deletions
26
.github/workflows/android.yaml
vendored
Normal file
26
.github/workflows/android.yaml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Update Lune Sources
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update:
|
||||||
|
name: Update the lune-src submodule
|
||||||
|
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"
|
||||||
|
|
||||||
|
- name: Build routine
|
||||||
|
run: "chmod +x ../package/android/build.sh && ../package/android/build.sh"
|
||||||
|
|
Loading…
Reference in a new issue