Skip to content

fix: escaped chars and workflows #1

fix: escaped chars and workflows

fix: escaped chars and workflows #1

Workflow file for this run

name: Build and Push Docker Images
on:
workflow_dispatch: {}
push:
branches:
- main
paths:
- .github/workflows/build-docker.yaml
- Dockerfile
jobs:
build-and-push:
runs-on: ubuntu-latest
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: Build and Push
if: github.ref != 'refs/heads/master'
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5
with:
context: .
file: Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/xunholy/images/kustomize-mutating-webhook:latest