Skip to content

Merge pull request #115 from controlplaneio-fluxcd/update-charts #40

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

Merge pull request #115 from controlplaneio-fluxcd/update-charts #40

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@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
with:
cosign-release: v2.6.1 # TODO: remove after Flux 2.8 with support for cosign v3
- 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