Remove redundant stable tag from workflows #56
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: Builds for linux/amd64 and linux/arm64 in single job | |
| 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: | |
| 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 | |
| - name: 🐳 Build and push multi-platform image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: images/platformio | |
| platforms: linux/amd64,linux/arm64 | |
| push: ${{ github.repository_owner == 'jethome-iot' && github.ref_name == 'master' }} | |
| tags: | | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:latest | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:sha-${{ steps.tags.outputs.sha_short }} | |
| ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.PLATFORMIO_IMAGE_NAME }}:pio-${{ matrix.pio_version }} | |
| cache-from: type=gha,scope=${{ env.PLATFORMIO_IMAGE_NAME }} | |
| cache-to: type=gha,mode=max,scope=${{ env.PLATFORMIO_IMAGE_NAME }} | |
| build-args: | | |
| PIO_VERSION=${{ matrix.pio_version }} |