Skip to content

Commit e6cfbd6

Browse files
authored
Merge pull request #1213 from consideRatio/pr/fix-gha-publish-2
Fix chart publishing workflow
2 parents 97fab06 + f1acd41 commit e6cfbd6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ci/publish

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Exit on errors, assert env vars, log commands
77
set -eux
88

9+
cd helm-chart
910
# chartpress use git to push to our Helm chart repository, which is the gh-pages
1011
# branch of jupyterhub/helm-chart. We have installed a private SSH key within
1112
# the ~/.ssh folder with permissions to push to jupyterhub/helm-chart.
@@ -22,7 +23,7 @@ if [[ $GITHUB_REF != refs/tags/* ]]; then
2223
#
2324
# NOTE: GitHub merge commits contain a PR reference like #123. `sed` looks
2425
# to extract either a PR reference like #123 or fall back to create a
25-
# commit hash reference like @123abcd. Combined with TRAVIS_REPO_SLUG
26+
# commit hash reference like @123abcd. Combined with GITHUB_REPOSITORY
2627
# we craft a commit message like jupyterhub/binderhub#123 or
2728
# jupyterhub/binderhub@123abcd which will be understood as a reference
2829
# by GitHub.
@@ -38,4 +39,4 @@ fi
3839

3940
# Let us log the changes chartpress did, it should include replacements for
4041
# fields in values.yaml, such as what tag for various images we are using.
41-
git --no-pager diff
42+
git --no-pager diff --color=always

0 commit comments

Comments
 (0)