chore(helm): move to dedicated helm-repo (#1) #1
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: Helm Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release-helm-chart: | |
name: Release Helm Chart | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
- name: Helm Lint | |
run: helm lint charts/casdoor | |
- name: Run helm unittest | |
id: unittest | |
run: | | |
helm plugin install https://github.com/helm-unittest/helm-unittest.git | |
helm unittest charts/casdoor | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Release Helm Chart | |
run: | | |
REGISTRY=oci://registry-1.docker.io/casbin | |
helm package . | |
PKG_NAME=$(ls *.tgz) | |
helm repo index charts/casdoor --url $REGISTRY --merge index.yaml | |
helm push $PKG_NAME $REGISTRY | |
rm $PKG_NAME |