bump kbatch-proxy to 0.5.0a1 #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a GitHub workflow defining a set of jobs with a set of steps. ref: | |
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions | |
# | |
# This workflow package and publishes the Helm charts to Helm repository living | |
# inside the gh-pages branch of this git repository. | |
# | |
name: Publish charts | |
on: | |
push: | |
tags: ["*"] | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
env: | |
CHARTPRESS_ARGS: >- | |
--builder docker-buildx | |
--platform linux/amd64 | |
--platform linux/arm64 | |
jobs: | |
build: | |
permissions: | |
packages: write | |
contents: write | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# chartpress requires git history to set chart version and image tags | |
# correctly | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Decide to publish or not | |
id: publishing | |
shell: python | |
run: | | |
import os | |
repo = "${{ github.repository }}" | |
event = "${{ github.event_name }}" | |
ref = "${{ github.event.ref }}" | |
publishing = "" | |
if ( | |
event == "push" | |
and ( | |
ref.startswith("refs/tags/") | |
or ref == "refs/heads/main" | |
) | |
): | |
publishing = "true" | |
print("Publishing chart") | |
with open(os.environ["GITHUB_OUTPUT"], "a") as f: | |
f.write(f"publishing={publishing}\n") | |
- name: Set up QEMU (for docker buildx) | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx (for chartpress multi-arch builds) | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the container registry | |
if: steps.publishing.outputs.publishing | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install chart publishing dependencies (chartpress) | |
run: | | |
pip install -r requirements.txt | |
pip list | |
helm version | |
- name: Enable chartpress publishing | |
if: steps.publishing.outputs.publishing | |
run: | |
echo CHARTPRESS_ARGS="${CHARTPRESS_ARGS} --push" >> $GITHUB_ENV | |
- name: build chart with chartpress | |
run: | | |
chartpress $CHARTPRESS_ARGS | |
- name: Publish Helm charts | |
if: steps.publishing.outputs.publishing | |
uses: stefanprodan/helm-gh-pages@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
charts_dir: "." | |
charts_url: https://kbatch-dev.github.io/helm-chart | |
linting: "off" |