-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (32 loc) · 1021 Bytes
/
release.yml
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
name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Add Repos
run: |
helm repo add unikorn-core https://unikorn-cloud.github.io/core
helm repo add unikorn-identity https://unikorn-cloud.github.io/identity
helm repo add unikorn-region https://unikorn-cloud.github.io/region
helm repo add unikorn-kubernetes https://unikorn-cloud.github.io/kubernetes
helm repo add unikorn-ui https://unikorn-cloud.github.io/ui
- name: Release
uses: helm/[email protected]
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CR_SKIP_EXISTING: 'true'