Refactor workflows to use matrix.version with include pattern #59
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
| # PlatformIO Docker Build Workflow | |
| # | |
| # Build Strategy: | |
| # - Main repo master: Build + Push to GHCR | |
| # - Main repo dev/PR: Build only (validation) | |
| # - workflow_dispatch: Build on any branch/fork, push only on main repo master | |
| # - Forks: Can test builds, but push is restricted to main repo | |
| # - Multi-platform: Platform matrix builds linux/amd64 and linux/arm64 in parallel | |
| name: π³ PlatformIO Docker Image | |
| on: | |
| push: | |
| branches: [master, dev] | |
| paths: | |
| - '.github/workflows/platformio.yml' | |
| - 'images/platformio/**' | |
| pull_request: | |
| branches: [master, dev] | |
| paths: | |
| - '.github/workflows/platformio.yml' | |
| - 'images/platformio/**' | |
| workflow_dispatch: | |
| env: | |
| REGISTRY: ghcr.io | |
| PLATFORMIO_IMAGE_NAME: jethome-dev-platformio | |
| jobs: | |
| platformio-build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| if: github.repository_owner == 'jethome-iot' || github.event_name == 'workflow_dispatch' | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: ['v6.1.18'] | |
| platform: ['linux/amd64', 'linux/arm64'] | |
| include: | |
| - version: 'v6.1.18' | |
| pio_version: 'v6.1.18' | |
| steps: | |
| - name: π₯ Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: π§ Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: π Log in to GitHub Container Registry | |
| if: github.repository_owner == 'jethome-iot' && github.ref_name == 'master' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: π·οΈ Generate tags | |
| id: tags | |
| run: | | |
| SHA_SHORT=$(echo "${{ github.sha }}" | cut -c1-7) | |
| echo "sha_short=${SHA_SHORT}" >> $GITHUB_OUTPUT | |
| PLATFORM_TAG=$(echo "${{ matrix.platform }}" | tr '/' '-') | |
| echo "platform_tag=${PLATFORM_TAG}" >> $GITHUB_OUTPUT | |
| - name: π³ Build and push platform-specific image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: images/platformio | |
| platforms: ${{ matrix.platform }} | |
| push: ${{ github.repository_owner == 'jethome-iot' && github.ref_name == 'master' }} | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:pio-${{ matrix.version }}-${{ steps.tags.outputs.platform_tag }} | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:sha-${{ steps.tags.outputs.sha_short }}-${{ steps.tags.outputs.platform_tag }} | |
| cache-from: type=gha,scope=${{ env.PLATFORMIO_IMAGE_NAME }}-${{ steps.tags.outputs.platform_tag }} | |
| cache-to: type=gha,mode=max,scope=${{ env.PLATFORMIO_IMAGE_NAME }}-${{ steps.tags.outputs.platform_tag }} | |
| build-args: | | |
| PIO_VERSION=${{ matrix.pio_version }} | |
| platformio-manifest: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| needs: platformio-build | |
| if: github.repository_owner == 'jethome-iot' && github.ref_name == 'master' | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: ['v6.1.18'] | |
| include: | |
| - version: 'v6.1.18' | |
| pio_version: 'v6.1.18' | |
| steps: | |
| - name: π Log in to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: π·οΈ Generate tags | |
| id: tags | |
| run: | | |
| SHA_SHORT=$(echo "${{ github.sha }}" | cut -c1-7) | |
| echo "sha_short=${SHA_SHORT}" >> $GITHUB_OUTPUT | |
| - name: π³ Create and push multi-arch manifest | |
| run: | | |
| docker buildx imagetools create -t ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:latest \ | |
| -t ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:sha-${{ steps.tags.outputs.sha_short }} \ | |
| -t ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:pio-${{ matrix.version }} \ | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:pio-${{ matrix.version }}-linux-amd64 \ | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:pio-${{ matrix.version }}-linux-arm64 |