Skip to content

Add workflow_dispatch trigger #46

Add workflow_dispatch trigger

Add workflow_dispatch trigger #46

Workflow file for this run

name: CD / Publish Docker
on:
push:
tags:
- 'v*.*.*'
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
env:
DOCKER_METADATA_PR_HEAD_SHA: 'true'
jobs:
publish-docker:
name: Build and Push to GHCR
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
packages: 'write'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/pluralsh/k9s-doggo
tags: |
type=sha
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: '.'
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max