File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : Helm Charts
22
33on :
4- push :
5- tags :
6- - ' v*'
4+ workflow_run :
5+ workflows : ["Docker Build"]
6+ types :
7+ - completed
78
89 # Allows you to run this workflow manually from the Actions tab
910 workflow_dispatch :
@@ -40,10 +41,11 @@ jobs:
4041
4142 - name : Download charts
4243 run : |
43- helm repo add self $HELM_REPO
44- CHART_VERSIONS=$(helm search repo -l $HELM_CHATR | awk '(NR>1) { print $2 }')
45- mkdir -p _build && cd _build
46- for CHART_VERSION in $CHART_VERSIONS; do helm pull self/$HELM_CHATR --version $CHART_VERSION; done
44+ if helm repo add self $HELM_REPO &>/dev/null; then
45+ CHART_VERSIONS=$(helm search repo -l $HELM_CHATR | awk '(NR>1) { print $2 }')
46+ mkdir -p _build && cd _build
47+ for CHART_VERSION in $CHART_VERSIONS; do helm pull self/$HELM_CHATR --version $CHART_VERSION; done
48+ fi
4749
4850 - name : Package
4951 run : |
Original file line number Diff line number Diff line change @@ -11,12 +11,11 @@ jobs:
1111 strategy :
1212 matrix :
1313 node-image :
14- - kindest/node:v1.26.15@sha256:c79602a44b4056d7e48dc20f7504350f1e87530fe953428b792def00bc1076dd
15- - kindest/node:v1.27.16@sha256:2d21a61643eafc439905e18705b8186f3296384750a835ad7a005dceb9546d20
16- - kindest/node:v1.28.15@sha256:a7c05c7ae043a0b8c818f5a06188bc2c4098f6cb59ca7d1856df00375d839251
17- - kindest/node:v1.29.12@sha256:62c0672ba99a4afd7396512848d6fc382906b8f33349ae68fb1dbfe549f70dec
18- - kindest/node:v1.30.8@sha256:17cd608b3971338d9180b00776cb766c50d0a0b6b904ab4ff52fd3fc5c6369bf
19- - kindest/node:v1.31.4@sha256:2cb39f7295fe7eafee0842b1052a599a4fb0f8bcf3f83d96c7f4864c357c6c30
14+ - kindest/node:v1.30.13@sha256:397209b3d947d154f6641f2d0ce8d473732bd91c87d9575ade99049aa33cd648
15+ - kindest/node:v1.31.12@sha256:0f5cc49c5e73c0c2bb6e2df56e7df189240d83cf94edfa30946482eb08ec57d2
16+ - kindest/node:v1.32.8@sha256:abd489f042d2b644e2d033f5c2d900bc707798d075e8186cb65e3f1367a9d5a1
17+ - kindest/node:v1.33.4@sha256:25a6018e48dfcaee478f4a59af81157a437f15e6e140bf103f85a2e7cd0cbbf2
18+ - kindest/node:v1.34.0@sha256:7416a61b42b1662ca6ca89f02028ac133a309a2a30ba309614e8ec94d976dc5a
2019 runs-on : ubuntu-latest
2120
2221 steps :
3130
3231 - name : Create kind cluster
3332 id : kind
34- uses : helm/kind-action@main
33+ uses : helm/kind-action@v1
3534 with :
3635 node_image : ${{ matrix.node-image }}
3736 registry : true
You can’t perform that action at this time.
0 commit comments