Update main.yml #3
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
name: Publish Helm Chart to Quay.io | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
jobs: | |
build-and-publish-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
- name: Lint Helm Chart | |
run: helm lint ./ | |
- name: Package Helm Chart | |
run: helm package ./ -d ./ | |
- name: Push Chart to Quay.io | |
run: | | |
export HELM_EXPERIMENTAL_OCI=1 | |
helm registry login -u ${{ secrets.QUAY_USERNAME }} -p ${{ secrets.QUAY_PASSWORD }} quay.io | |
helm push ./-*.tgz oci://quay.io/crozltd | |
helm registry logout quay.io |