From 769c74b5e4190958dd614525479f12dc9bcf2f9d Mon Sep 17 00:00:00 2001 From: nebhale Date: Fri, 13 Nov 2020 17:03:42 +0000 Subject: [PATCH] Bump pipeline from 1.7.0 to 1.8.1 Bumps pipeline from 1.7.0 to 1.8.1. Signed-off-by: GitHub --- .github/pipeline-version | 2 +- .github/workflows/update-draft-release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/pipeline-version b/.github/pipeline-version index bd8bf88..a8fdfda 100644 --- a/.github/pipeline-version +++ b/.github/pipeline-version @@ -1 +1 @@ -1.7.0 +1.8.1 diff --git a/.github/workflows/update-draft-release.yml b/.github/workflows/update-draft-release.yml index 143b691..84cc027 100644 --- a/.github/workflows/update-draft-release.yml +++ b/.github/workflows/update-draft-release.yml @@ -59,14 +59,14 @@ jobs: for BUILDPACK in $( jq -n -r \ --argjson PAYLOAD "${PAYLOAD}" \ - '$PAYLOAD.primary.buildpacks[].image' + '$PAYLOAD.primary.buildpacks[].uri | capture("(?:.+://)?(?.+)") | .image' ); do crane export "${BUILDPACK}" - | tar xf - --absolute-names --strip-components 1 --wildcards "/cnb/buildpacks/*/*/buildpack.toml" done fi if [[ -e package.toml ]]; then - for PACKAGE in $(yj -t < package.toml | jq -r '.dependencies[].image'); do + for PACKAGE in $(yj -t < package.toml | jq -r '.dependencies[].uri | capture("(?:.+://)?(?.+)") | .image'); do crane export "${PACKAGE}" - | tar xf - --absolute-names --strip-components 1 --wildcards "/cnb/buildpacks/*/*/buildpack.toml" done fi