-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (58 loc) · 1.84 KB
/
build.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
on:
push:
branches:
- master
paths:
- '*/**'
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: package dworks charts
run: |
mkdir -p ${{ runner.temp }}/packages
ar_charts=$(find . -mindepth 1 -maxdepth 1 -type d \( ! -name .\* \) \( ! -name tmp \) -printf '%f ')
for dir in ${ar_charts}; do
if helm package --dependency-update --destination ${{ runner.temp }}/packages "$dir"; then
echo "✅ built dependencies and packaged $dir"
else
echo "❌ unable to build dependencies for $dir"
exit 1
fi
done
- uses: actions/upload-artifact@v2
with:
name: dworks-packages
path: ${{ runner.temp }}/packages/
release:
needs:
- package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: gh-pages
- name: configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- uses: actions/download-artifact@v2
with:
name: dworks-packages
path: ${{ runner.temp }}/packages
- name: create index of dworks charts
run: |
if helm repo index --url https://devops-works.github.io/helm-charts --merge index.yaml ${{ runner.temp }}; then
echo "✅ index updated"
mv -f ${{ runner.temp }}/index.yaml index.yaml
git add index.yaml
else
echo "❌ unable to update index"
exit 1
fi
mkdir -p packages
cp -f ${{ runner.temp }}/packages/*.tgz packages
git add packages/*.tgz
git commit --signoff -m "Push packages & index [ci skip]"
git push