From ec912e9637cbd5fc30cd0bf1a3d44fc0f2b58d95 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 30 Jun 2024 11:34:02 -0500 Subject: [PATCH] github: add docker publish action --- .github/workflows/publish.yml | 62 +++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..f2fb3e0 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,62 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# GitHub recommends pinning actions to a commit SHA. +# To get a newer version, you will need to update the SHA. +# You can also reference a tag or branch, but the action may change without warning. + +name: Publish Docker image + +on: + push: + branches: + - master + +jobs: + push_to_registry: + name: Push Docker image to Docker Hub + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + attestations: write + id-token: write + strategy: + matrix: + release: [stretch, buster] + steps: + - name: Check out the repo + uses: actions/checkout@v4 + + - name: Log in to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: ev3dev/debian-${{ matrix.release }}-cross + tags: type=sha + + - name: Build and push Docker image + id: push + uses: docker/build-push-action@v6 + with: + context: ev3dev-${{ matrix.release }} + file: ev3dev-${{ matrix.release }}/debian-${{ matrix.release }}-cross.dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + - name: Generate artifact attestation + uses: actions/attest-build-provenance@v1 + with: + subject-name: index.docker.io/ev3dev/debian-${{ matrix.release }}-cross + subject-digest: ${{ steps.push.outputs.digest }} + push-to-registry: true +