This commit is contained in:
19
.gitea/workflows/push.yaml
Normal file
19
.gitea/workflows/push.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Publish to helm repo
|
||||
run-name: ${{ gitea.actor }} is runs ci pipeline
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: deploy
|
||||
runs-on: helm
|
||||
|
||||
steps:
|
||||
- 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 push .kube/ gitea
|
||||
Reference in New Issue
Block a user