ci: add caddy
image build workflow
#2
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: Caddy | |
on: | |
push: | |
branches: | |
# - master # TODO: uncomment before merging | |
- caddy-image # TODO: remove before merging | |
paths: | |
- caddy.Containerfile | |
jobs: | |
build-image: | |
name: Build Image | |
runs-on: ubuntu-22.04 | |
permissions: | |
attestations: write | |
contents: read | |
id-token: write | |
packages: write | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
sparse-checkout: | | |
caddy.Containerfile | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Push image | |
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0 | |
id: push | |
with: | |
context: . | |
file: ./caddy.Containerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
sbom: true | |
tags: ghcr.io/caddyserver/gateway:caddy-2.8.0 | |
build-args: | | |
CADDY_VERSION=2.8.0 | |
CADDY_BUILDER_HASH=sha256:93a0320af6e247362974f8606f1659b977b8c4421282682844a197b26b4be924 | |
CADDY_HASH=sha256:ccdad842a0f34a8db14fa0671113f9567d65ba3798220539467d235131a3ed63 | |
- name: Attest | |
uses: actions/attest-build-provenance@173725a1209d09b31f9d30a3890cf2757ebbff0d # v1.1.2 | |
id: attest | |
with: | |
subject-name: ghcr.io/caddyserver/gateway | |
subject-digest: ${{ steps.push.outputs.digest }} | |
push-to-registry: true |