wikijs-fork/.github/workflows/helm.yml

27 lines
860 B
YAML
Raw Normal View History

name: Helm Chart CI
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
2022-02-05 03:52:52 +00:00
branches: [ main ]
paths: [ dev/helm/** ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Update Chart
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Package and Push Chart
run: |
helm plugin install https://github.com/chartmuseum/helm-push.git
2021-10-24 07:00:53 +00:00
helm repo add chartmuseum https://charts.js.wiki
helm cm-push --version="2.2.${{github.run_number}}" --username="${{secrets.HELM_REPO_USERNAME}}" --password="${{secrets.HELM_REPO_PASSWORD}}" dev/helm/ chartmuseum
2021-10-24 06:58:55 +00:00
helm repo remove chartmuseum