-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (52 loc) · 1.79 KB
/
release.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Release a new version
on:
push:
branches:
- stable
jobs:
release:
name: Release
if: |
!(github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]')) &&
!(github.event_name == 'pull_request' && contains(join(github.event.pull_request.title, github.event.pull_request.body), '[skip ci]'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
with:
git_user_signingkey: true
git_commit_gpgsign: true
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Semantic release
run: ./release.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_USERNAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_USERNAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}
- name: Update index.yaml
run: ./cr.sh
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CR_OWNER: MakairaIO
CR_GIT_REPO: helm-charts
CR_PACKAGE_PATH: charts
CR_INDEX_PATH: index.yaml
CR_PAGES_BRANCH: gh-pages
CR_COMMIT_MESSAGE: "chore: update index.yaml"
CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-v{{ .Version }}"
- name: Trigger Renovate
uses: AlexanderBabel/action-renovate-checkbox@v1
with:
master-issue-id: 16
repo: kubernetes-config
token: ${{ secrets.GH_TOKEN }}