Skip to content

Merge pull request #86 from controlplaneio-fluxcd/update-charts #30

Merge pull request #86 from controlplaneio-fluxcd/update-charts

Merge pull request #86 from controlplaneio-fluxcd/update-charts #30

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
tag:
description: 'image tag prefix'
default: 'rc'
required: true
permissions:
contents: read
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # for creating the GitHub release.
id-token: write # for creating OIDC tokens for signing.
packages: write # for pushing and signing container images.
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Helm
uses: azure/[email protected]
- name: Setup Cosign
uses: sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Package Helm charts
run: make package
- name: Push Helm charts
run: make push
- name: Sign Helm charts
run: make sign