Add release workflow (#11)

Merging to test if that enables it
This commit is contained in:
Ken Van Hoeylandt
2025-10-17 22:03:00 +02:00
committed by GitHub
parent 16770e63d3
commit 722cdc8a1a
3 changed files with 44 additions and 3 deletions
+59
View File
@@ -0,0 +1,59 @@
name: Build Apps
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
permissions: read-all
jobs:
Calculator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-app
with:
app_name: Calculator
Diceware:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-app
with:
app_name: Diceware
GPIO:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-app
with:
app_name: GPIO
GraphicsDemo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-app
with:
app_name: GraphicsDemo
HelloWorld:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-app
with:
app_name: HelloWorld
SerialConsole:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-app
with:
app_name: SerialConsole