Build Release #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |