2022-11-20 01:23:35 +00:00
|
|
|
name: Build RPI2040
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
board:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
2023-01-27 16:22:17 +00:00
|
|
|
jobs:
|
2022-11-20 01:23:35 +00:00
|
|
|
build-rpi2040:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-22 11:39:35 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
2022-11-20 01:23:35 +00:00
|
|
|
- name: Build Raspberry Pi 2040
|
2024-09-24 05:47:31 +00:00
|
|
|
id: build
|
|
|
|
uses: ./.github/actions/build-variant
|
2022-11-20 01:23:35 +00:00
|
|
|
with:
|
2024-09-24 05:47:31 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
board: ${{ inputs.board }}
|
|
|
|
build-script-path: bin/build-rpi2040.sh
|
|
|
|
artifact-paths: |
|
2022-11-20 01:23:35 +00:00
|
|
|
release/*.uf2
|
2023-01-27 16:22:17 +00:00
|
|
|
release/*.elf
|