mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
- Minor change in push pipeline to remove spaces from artifact name - Create release pipeline with the same steps that will upload a zipped package to every published release automatically
34 lines
695 B
YAML
34 lines
695 B
YAML
name: Build Pico Launcher
|
|
|
|
on:
|
|
push:
|
|
branches: ["develop"]
|
|
paths-ignore:
|
|
- 'README.md'
|
|
pull_request:
|
|
branches: ["develop"]
|
|
paths-ignore:
|
|
- 'README.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
pico_launcher:
|
|
runs-on: ubuntu-latest
|
|
container: skylyrac/blocksds:slim-v1.13.1
|
|
name: Build Pico Launcher
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Run build script
|
|
run: |
|
|
make
|
|
- name: Publish build to GH Actions
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
path: |
|
|
_pico/
|
|
LAUNCHER.nds
|
|
name: Pico_Launcher
|