Skip to content
Snippets Groups Projects
build-container.yml 1.61 KiB
Newer Older
  • Learn to ignore specific revisions
  • # Based on the example from https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
    name: Create and publish a Docker image
    
    on:
      push:
        branches:
          - 'master'
    
          - 'v202[0-9].[0-9].x'
    
      IMAGE_NAME: ${{ github.repository }}-build
    
        runs-on: ubuntu-22.04
    
        permissions: write-all
        steps:
          - name: Checkout repository
    
            uses: actions/checkout@v4
    
            uses: docker/setup-qemu-action@v3
    
          - name: Set up Docker Buildx
    
            uses: docker/setup-buildx-action@v3
    
          - name: Log in to the Container registry
    
            uses: docker/login-action@5139682d94efc37792e6b54386b5b470a68a4737
    
            if: ${{ github.repository_owner == 'freifunk-gluon' && github.event_name == 'push' }}
    
            with:
              registry: ${{ env.REGISTRY }}
              username: ${{ github.actor }}
              password: ${{ secrets.GITHUB_TOKEN }}
          - name: Extract metadata (tags, labels) for Docker
            id: meta
    
            uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81
    
              images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
    
          - name: Build and push Docker image
    
            uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56
    
              push: ${{ github.repository_owner == 'freifunk-gluon' && github.event_name == 'push' }}
    
              platforms: linux/amd64,linux/arm64
    
              tags: ${{ steps.meta.outputs.tags }}
              labels: ${{ steps.meta.outputs.labels }}