-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (34 loc) · 1.01 KB
/
release.yml
File metadata and controls
38 lines (34 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Release Charts
on:
push:
tags: 'chart.*'
branches:
- releases
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v2.1
with:
version: v3.7.0
- name: Configure Git
run: |
git config user.name "usrbinkat"
git config user.email "usrbinkat@braincraft.io"
- name: Add dependency helm repos
run: |
helm repo add rook-release https://charts.rook.io/release
helm repo add argo https://argoproj.github.io/argo-helm
helm repo add metallb https://metallb.github.io/metallb
helm repo add jetstack https://charts.jetstack.io
helm repo add kong https://charts.konghq.com
helm repo update
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.2.1
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"