Skip to content

Build Tchap container #1

Build Tchap container

Build Tchap container #1

Workflow file for this run

# GitHub actions workflow which builds and publishes the docker images.
name: Build docker images
on:
push:
tags: ["v*"]
branches: [ tchap ]
permissions:
contents: read
id-token: write # needed for signing the images with GitHub OIDC Token
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Cosign
uses: sigstore/cosign-installer@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Calculate docker image tag
id: set-tag
uses: docker/metadata-action@v5
with:
images: ghcr.io/tchapgouv/matrix-content-scanner
tags: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/tchap' }}
type=ref,event=tag
- name: Build and push all platforms
id: build-and-push
uses: docker/build-push-action@v5
with:
push: true
labels: gitsha1=${{ github.sha }}
tags: "${{ steps.set-tag.outputs.tags }}"
file: "docker/Dockerfile"
platforms: linux/amd64,linux/arm64
- name: Sign the images with GitHub OIDC Token
env:
DIGEST: ${{ steps.build-and-push.outputs.digest }}
TAGS: ${{ steps.set-tag.outputs.tags }}
run: |
images=""
for tag in ${TAGS}; do
images+="${tag}@${DIGEST} "
done
cosign sign --yes ${images}