Skip to content

Trigger certificate reload on REMOVE event #9

Trigger certificate reload on REMOVE event

Trigger certificate reload on REMOVE event #9

Workflow file for this run

name: Build, Test, and Push Docker Images
on:
workflow_dispatch: {}
push:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Dockerfile"
- ".github/workflows/build-docker.yaml"
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "Dockerfile"
- ".github/workflows/build-docker.yaml"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Run tests
run: go test -v ./...
build-and-push:
needs: test
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3
with:
install: true
version: latest
- name: Login to GHCR
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate version
id: version
run: |
if [[ $GITHUB_REF == refs/tags/* ]]; then
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
else
echo "VERSION=$(date +'%Y.%m.%d')-${GITHUB_SHA::8}" >> $GITHUB_OUTPUT
fi
- name: Build and Push
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: |
ghcr.io/xunholy/kustomize-mutating-webhook:latest
ghcr.io/xunholy/kustomize-mutating-webhook:${{ steps.version.outputs.VERSION }}
cache-from: type=gha
cache-to: type=gha,mode=max