Skip to content

Release chart flux-operator v0.1.0 #1

Release chart flux-operator v0.1.0

Release chart flux-operator v0.1.0 #1

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/checkout@v4.1.6
- name: Setup Helm
uses: azure/setup-helm@v4.2.0
- name: Login to GitHub Container Registry
uses: docker/login-action@v3.1.0
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