-
-
Notifications
You must be signed in to change notification settings - Fork 7
103 lines (89 loc) · 3.01 KB
/
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Releases
on:
push:
branches:
- main
- feat/**
paths:
- '.github/**'
- 'charts/**'
- '!**.md'
- '!**.md.gotmpl'
permissions:
contents: write
packages: write
jobs:
validate:
runs-on: ubuntu-latest
outputs:
result: ${{ steps.changed.outputs.result }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- id: changed
name: Changed
run: |
# Improve this logic to detect changed version from multples merges/changes
files_changed="$(git show --pretty="" --name-only)"
echo "$files_changed"
num_version_bumps="$(echo "$files_changed" | grep Chart.yaml | xargs git show | grep -c "+version" || true)"
if [[ "$num_version_bumps" -eq "1" ]]; then
echo "result=ok" >> $GITHUB_OUTPUT
else
echo "result=skip"
echo "::warning::Version not changed, skipping release job..."
fi
- name: Tests
if: ${{ steps.changed.outputs.result == 'ok' }}
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm plugin install https://github.com/helm-unittest/helm-unittest
for FILE in charts/*; do
helm dependency update $FILE
helm unittest $FILE
done
release:
needs: validate
if: ${{ needs.validate.outputs.result == 'ok' }}
# depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
- name: Add repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm plugin install https://github.com/helm-unittest/helm-unittest
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_RELEASE_NAME_TEMPLATE: "cryptpad-helm-{{ .Version }}"
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Charts to GHCR
run: |
shopt -s nullglob
for pkg in .cr-release-packages/*.tgz; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push --debug "${pkg}" oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/helm
done