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}}