-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.69 KB
/
chart-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
name: Release Charts
on:
workflow_dispatch:
permissions:
contents: write
packages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Publish chart
env:
HELM_EXPERIMENTAL_OCI: '1'
CHARTS_REPO: ghcr.io/${{ github.repository }}
VERSION: ${{ github.ref_name }}
# read chart version from Chart.yaml and increment it
# then update Chart.yaml and push it back to the repo
run: |
CURRENT_CHART_VERSION=$(yq e '.version' charts/hub/Chart.yaml)
CHART_VERSION=$(echo $CURRENT_CHART_VERSION | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')
echo "Chart version: $CHART_VERSION"
cd charts/hub
helm dep up
helm package . --version ${CHART_VERSION} --app-version ${VERSION}
helm push hub-${CHART_VERSION}.tgz oci://${CHARTS_REPO}
sed -i "s/version: ${CURRENT_CHART_VERSION}/version: ${CHART_VERSION}/g" Chart.yaml
git add Chart.yaml
git commit -m "📦 Bump chart version to ${CHART_VERSION}"
git push origin ${{ github.ref_name }}