Georg K 2575e6086a
All checks were successful
Publish to helm repo / deploy (push) Successful in 42s
fix: use ubuntu latest...
2024-09-28 00:56:10 +03:00

23 lines
655 B
YAML

name: Publish to helm repo
run-name: ${{ gitea.actor }} is runs ci pipeline
on:
push:
branches:
- main
jobs:
publish:
name: deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: azure/setup-helm@v4.2.0
- name: add helm push plugin
run: helm plugin install https://github.com/chartmuseum/helm-push
- name: add gitea repo
run: helm repo add --username ${{ secrets.REPO_USER }} --password ${{ secrets.REPO_PASS }} gitea https://git.ahax86.ru/api/packages/pub/helm
- name: update repo
run: helm repo update
- name: push to helm repo
run: helm cm-push .kube/ gitea