From 992c419d1cc7721af1ca217f966dac6a1c4dd646 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 1 Feb 2024 16:01:06 +0100 Subject: [PATCH] ci: add publish workflow --- .github/workflows/publish.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..6a789c5 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,18 @@ +name: Publish Helm chart to Google Artifact Registry +on: + release: + types: [published] +jobs: + publish: + name: Publish Helm chart + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Publish + uses: stafftastic/helm-publish-action@main + with: + registry: registry-1.docker.io + repository: stafftasticcharts + username: stafftasticpush + password: ${{secrets.DOCKER_HUB_TOKEN}}