Skip to content

Publish chart

Publish chart #3

Workflow file for this run

name: 'Build and push main'
on:
push:
branches:
- 'main'
# Ignore specific changes
paths-ignore:
- 'deploy/**'
jobs:
# Any checks that run pre-build
build-and-publish:
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: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/kmc-jp/cert-manager-webhook-pdns
tags:
type=raw,value={{sha}}-{{date 'YYYYMMDDHHmmss'}}
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ github.sha }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}