Skip to content

Build Release

Build Release #32

Workflow file for this run

name: Build Release
on:
push:
# build and push anytime commits are pushed/merged
branches:
- main
schedule:
# build and push weekly
- cron: '0 5 * * 5'
workflow_dispatch: # allow manual triggering
permissions:
contents: read
packages: write
id-token: write
attestations: write
jobs:
docker-platforms:
strategy:
fail-fast: false
matrix:
pio_platform:
- esp32
- esp32c3
- esp32c6
- esp32s2
- esp32s3
- native
- nrf52840
- rp2040
- rp2350
- stm32
uses: ./.github/workflows/docker_manifest.yml
with:
pio_platform: ${{ matrix.pio_platform }}
secrets: inherit