Actions #1

Merged
grachevko merged 16 commits from actions into master 2023-08-27 20:43:00 +00:00
2 changed files with 41 additions and 0 deletions
Showing only changes of commit 4da36d8fec - Show all commits

View File

@ -10,7 +10,13 @@ jobs:
- uses: yokawasa/action-setup-kube-tools@v0.9.3
with:
setup-tools: helm
- name:
- name: deps and lint
run: |
helm dependency update
helm lint --strict .
- name: build
run: helm package --version 0.0.0 .
- name: publish
run: |
helm registry login harbor.grachevko.ru --username ${{ secrets.REGISTRY_USERNAME }} --password ${{ secrets.REGISTRY_PASSWORD }}
helm push ./*.tgz oci://harbor.grachevko.ru/${{ vars.GITEA_REPOSITORY }}