Annotate GitHub actions log #106
Workflow file for this run
This file contains 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 Contributor container (PR)' | |
# For speedup to do this in parallel: https://docs.docker.com/build/ci/github-actions/multi-platform/ | |
# Loosely based on: https://docs.docker.com/build/ci/github-actions/push-multi-registries/ | |
on: | |
push: | |
paths: | |
- docker-contributor | |
- .github/workflows/build-contributor-container-PR.yml | |
pull_request: | |
branches: | |
- main | |
paths: | |
- docker-contributor | |
- .github/workflows/build-contributor-container-PR.yml | |
jobs: | |
pr-contributor: | |
# Stop processing if this is a merge-queue | |
# Stop processing if this is not against our repo | |
# Always run if this PR is not from our organization | |
# Or run if this PR is not `main` (So notQueue && ourRepo && (notPROurOrg || notMain)) | |
if : ${{ !contains(github.ref, 'gh-readonly-queue') && | |
github.repository == 'domjudge/domjudge-packaging' && | |
!(github.event.pull_request.head.repo.full_name == 'domjudge/domjudge-packaging' && github.ref == 'main') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- 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.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | |
with: | |
images: ghcr.io/${{ github.repository }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: docker-contributor | |
platforms: linux/amd64,linux/arm64 | |
push: false | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |