mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
27 lines
581 B
YAML
27 lines
581 B
YAML
|
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"
|
||
|
|