Files
vt/.gitea/workflows/build-helm-release.yaml
KoCoder dca83ac39a
Some checks failed
Build and Push Docker Image / build (push) Failing after 15s
New: Install helm
2026-02-19 11:19:31 +01:00

25 lines
604 B
YAML

name: Build and Push Docker Image
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Helm
uses: azure/setup-helm@v4.3.0
- name: Install cm-push
run: helm plugin install https://github.com/chartmuseum/helm-push
- name: Setup helm Repo
run: helm repo add --username ${{ secrets.REGISTRY_USER }} --password ${{ secrets.REGISTRY_PASSWORD }} gitea https://git.kocoder.xyz/api/packages/kocoded/helm
- name: Build and Push
run: helm cm-push ./helm/chart/vt gitea