Build (but do not consume) containers for develop (#48)
#154
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 on Monday, Wednesday, Friday, and Saturday at 5:00 AM UTC | |
| - cron: '0 5 * * 1,3,5,6' | |
| 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 | |
| mt_branch: | |
| - master | |
| - develop | |
| uses: ./.github/workflows/docker_manifest.yml | |
| with: | |
| pio_platform: ${{ matrix.pio_platform }} | |
| meshtastic_branch: ${{ matrix.mt_branch }} | |
| secrets: inherit |