name: Build and Push Docker Image on: push: branches: - main # Change this to your main branch name or remove this line if you want to trigger on all branches env: IMAGE_NAME: pyinstaller-wxpython-linux jobs: build-and-push: runs-on: ubuntu-latest permissions: contents: read packages: write steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push part 1 uses: docker/build-push-action@v5 with: push: true platforms: | linux/amd64 linux/arm64 tags: ghcr.io/btclock/${{ env.IMAGE_NAME }}:latest cache-from: type=gha cache-to: type=gha,mode=max - name: Build and push part 2 uses: docker/build-push-action@v5 with: push: true platforms: | linux/arm/v7 linux/arm64/v8 tags: ghcr.io/btclock/${{ env.IMAGE_NAME }}:latest cache-from: type=gha cache-to: type=gha,mode=max