Skip to content

yeet kustomization.yaml #329

yeet kustomization.yaml

yeet kustomization.yaml #329

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
branches:
- main
permissions:
# Grant the ability to checkout the repository
contents: read
jobs:
publish-docker-images:
name: Push Docker images
runs-on: ubuntu-latest
permissions:
# Grant the ability to write to GitHub Packages (push Docker images to
# GitHub Container Registry).
packages: write
# Grant the ability to checkout the repository.
contents: write
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Log in to the Container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Docker images
run: make publish-component-containers