File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type: application
66# This is the chart version. This version number should be incremented each time you make changes
77# to the chart and its templates, including the app version.
88# Versions are expected to follow Semantic Versioning (https://semver.org/)
9- version : 2.2.13-dev.2
9+ version : 2.2.13-dev.3
1010
1111maintainers :
1212 - url : https://www.saritasa.com/
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ saritasa-tekton-pipelines
3131
3232## ` chart.version `
3333
34- ![ Version: 2.2.13-dev.2 ] ( https://img.shields.io/badge/Version-2.2.13--dev.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
34+ ![ Version: 2.2.13-dev.3 ] ( https://img.shields.io/badge/Version-2.2.13--dev.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
3535
3636## Maintainers
3737
Original file line number Diff line number Diff line change @@ -82,15 +82,12 @@ buildpacks:
8282 # Create env vars for each key=value pair inside buildpack_env_vars split by `;`
8383 # Will ignore every pair that doesn't have a `=` or a key
8484 if [[ -n "$buildpack_env_vars" ]]; then
85- IFS=';' read -r -a __pairs <<<"$buildpack_env_vars"
86- for pair in "${__pairs[@]}"; do
87-
85+ IFS=';' read -ra env_vars <<<"$buildpack_env_vars"
86+ for pair in "${env_vars[@]}"; do
8887 [[ -z "$pair" ]] && continue
8988 [[ "$pair" != *"="* ]] && continue
90-
9189 key=${pair%%=*}
9290 value=${pair#*=}
93-
9491 [[ -z "$key" ]] && continue
9592 echo "Creating ${key} with value: ${value}"
9693 export "$key"="$value"
@@ -105,6 +102,7 @@ buildpacks:
105102 npm config set cache $(workspaces.app.path)/.npm --global
106103 # set saritasa-nest Github Package as NPM registry
107104 if [[ -n "${NPM_REGISTRY_GITHUB_TOKEN:-}" ]]; then
105+ echo "Setting GitHub Packages NPM registry"
108106 npm config set @saritasa-nest:registry=https://npm.pkg.github.com/
109107 npm config set //npm.pkg.github.com/:_authToken="${NPM_REGISTRY_GITHUB_TOKEN}"
110108 fi
You can’t perform that action at this time.
0 commit comments