-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (58 loc) · 1.85 KB
/
helm.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
61
62
63
64
65
66
name: Helm Chart Workflow
on: push
# push:
# branches:
# - mainline
# pull_request:
# branches:
# - mainline
jobs:
Helm:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write, delete
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Helm
uses: azure/setup-helm@v3
with:
version: v3.14.0
# - name: Update Chart Version for PRs
# if: github.event_name == 'pull_request'
# working-directory: ${{ github.workspace }}/charts
# run: |
# for dir in */ ; do
# if [ -f "$dir/Chart.yaml" ]; then
# yq eval '.version += "-dev"' -i "$dir/Chart.yaml"
# fi
# done
# shell: bash
- name: Package All Helm Charts
working-directory: ${{ github.workspace }}/charts
run: |
for dir in */ ; do
if [ -f "$dir/Chart.yaml" ]; then
helm package "$dir"
fi
done
shell: bash
- name: Login to GHCR
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: Publish Helm Charts to GHCR
working-directory: ${{ github.workspace }}/charts
run: |
for chart in *.tgz ; do
chart_name=$(basename "$chart" .tgz)
chart_version=$(echo "$chart_name" | sed 's/.*-//')
if [ "${{ github.event_name }}" == "pull_request" ]; then
chart_version="${chart_version}-dev"
fi
ghcr_chart="ghcr.io/${{ github.repository_owner }}/${{ github.repository }}/${chart_name}:${chart_version}"
helm push "$chart" "oci://ghcr.io/${{ github.repository_owner }}"
done
shell: bash