Skip to content

Commit 833cdb3

Browse files
authored
Merge pull request #2298 from paketo-buildpacks/update/pipeline
Bump pipeline from 1.47.0 to 1.47.2
2 parents 09b64ee + 665f1fa commit 833cdb3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/pipeline-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.47.0
1+
1.47.2

.github/workflows/pb-create-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
fi
166166
done
167167
else
168-
if [ -n "$REGISTRY_PUBLISH" ] && [ "$REGISTRY_PUBLISH" = "true" ]; then
168+
if [ "${REGISTRY_PUBLISH:-}" = "true" ]; then
169169
TAG="${PACKAGE}-$(mktemp -u XXXXX | awk '{print tolower($0)}'):${VERSION}"
170170
pack -v buildpack package "${TAG}" ${CONFIG} --format "${FORMAT}" --publish
171171
else

.github/workflows/pb-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
fi
182182
done
183183
else
184-
if [ -n "$REGISTRY_PUBLISH" ] && [ "$REGISTRY_PUBLISH" = "true" ]; then
184+
if [ "${REGISTRY_PUBLISH:-}" = "true" ]; then
185185
TAG="${PACKAGE}-$(mktemp -u XXXXX | awk '{print tolower($0)}'):${VERSION}"
186186
pack -v buildpack package "${TAG}" ${CONFIG} --format "${FORMAT}" --publish
187187
else

0 commit comments

Comments
 (0)