From 2883fa6eda0a837a08a4379641e3c55bd82654f3 Mon Sep 17 00:00:00 2001 From: paketobuildpackscommunity Date: Tue, 11 Aug 2026 05:27:42 +0000 Subject: [PATCH] Bump pipeline from 1.47.0 to 1.47.2 Bumps pipeline from 1.47.0 to 1.47.2. Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/pipeline-version | 2 +- .github/workflows/pb-create-package.yml | 4 ++-- .github/workflows/pb-tests.yml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/pipeline-version b/.github/pipeline-version index 21998d3..eee5909 100644 --- a/.github/pipeline-version +++ b/.github/pipeline-version @@ -1 +1 @@ -1.47.0 +1.47.2 diff --git a/.github/workflows/pb-create-package.yml b/.github/workflows/pb-create-package.yml index e2ab891..a8dc271 100644 --- a/.github/workflows/pb-create-package.yml +++ b/.github/workflows/pb-create-package.yml @@ -165,7 +165,7 @@ jobs: fi done else - if [ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ]; then + if [ "${REGISTRY_PUBLISH:-}" = "true" ]; then TAG="${PACKAGE}-$(mktemp -u XXXXX | awk '{print tolower($0)}'):${VERSION}" pack -v buildpack package "${TAG}" ${CONFIG} --format "${FORMAT}" --publish else @@ -173,7 +173,7 @@ jobs: pack -v buildpack package "${TAG}" ${CONFIG} --format "${FORMAT}" fi - echo "ttl-image-tag=${TAG:-}" >> "$GITHUB_OUTPUT" + echo "image-tag=${TAG:-}" >> "$GITHUB_OUTPUT" fi env: PACKAGES: docker.io/paketocommunity/rustup diff --git a/.github/workflows/pb-tests.yml b/.github/workflows/pb-tests.yml index ed27627..96812e0 100644 --- a/.github/workflows/pb-tests.yml +++ b/.github/workflows/pb-tests.yml @@ -157,7 +157,7 @@ jobs: fi done else - if [ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ]; then + if [ "${REGISTRY_PUBLISH:-}" = "true" ]; then TAG="${PACKAGE}-$(mktemp -u XXXXX | awk '{print tolower($0)}'):${VERSION}" pack -v buildpack package "${TAG}" ${CONFIG} --format "${FORMAT}" --publish else @@ -165,12 +165,12 @@ jobs: pack -v buildpack package "${TAG}" ${CONFIG} --format "${FORMAT}" fi - echo "ttl-image-tag=${TAG:-}" >> "$GITHUB_OUTPUT" + echo "image-tag=${TAG:-}" >> "$GITHUB_OUTPUT" fi env: FORMAT: image PACKAGES: test - TTL_SH_PUBLISH: "false" + REGISTRY_PUBLISH: "false" VERSION: ${{ steps.version.outputs.version }} unit: name: Unit Test