Skip to content

Commit d8e28cc

Browse files
authored
Merge pull request #1212 from consideRatio/pr/fix-gha-publish
Syntax error fix to publishing workflow
2 parents 42f8538 + ee14f37 commit d8e28cc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install chart publishing dependencies (chartpress, helm)
4040
run: |
4141
. ./ci/common
42-
setup_helm v3.4.0
42+
setup_helm v3.4.1
4343
pip install --no-cache-dir chartpress
4444
4545
- name: Setup push rights to jupyterhub/helm-chart

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
include:
2323
# This version of k3s uses kubernetes v1.18
2424
- k3s-version: v1.18.10+k3s2
25-
helm_version: v3.4.0
25+
helm_version: v3.4.1
2626
test: main
2727
- k3s-version: v1.18.10+k3s2
28-
helm_version: v3.4.0
28+
helm_version: v3.4.1
2929
test: auth
3030
- k3s-version: v1.18.10+k3s2
31-
helm_version: v3.4.0
31+
helm_version: v3.4.1
3232
test: helm
3333
steps:
3434
- uses: actions/checkout@v2

ci/common

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh
22
# Use https://www.shellcheck.net/ to reduce mistakes if you make changes to this file.
33

4-
setup_helm () {
5-
helm_version = $1
4+
setup_helm() {
5+
helm_version="${1}"
66
echo "setup helm ${helm_version}"
7-
curl -sf https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | DESIRED_VERSION=v${helm_version} bash
7+
curl -sf https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | DESIRED_VERSION="${helm_version}" bash
88
}
99

1010
await_jupyterhub() {
@@ -22,7 +22,7 @@ await_binderhub() {
2222
kubectl rollout status --watch --timeout 300s deployment/binder
2323
}
2424

25-
full_namespace_report () {
25+
full_namespace_report() {
2626
# list config (secret,configmap)
2727
kubectl get secret,cm
2828
# list networking (service,ingress)

0 commit comments

Comments
 (0)