Skip to content

Commit

Permalink
Bump pipeline from 1.20.0 to 1.21.1
Browse files Browse the repository at this point in the history
Bumps pipeline from 1.20.0 to 1.21.1.

Signed-off-by: GitHub <[email protected]>
  • Loading branch information
paketo-bot authored Apr 11, 2022
1 parent 8356d0e commit d43429a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/pipeline-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0
1.21.1
6 changes: 6 additions & 0 deletions .github/workflows/create-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ jobs:
set -euo pipefail
if [ -z "${GITHUB_REF+set}" ]; then
echo "GITHUB_REF set to [${GITHUB_REF-<unset>}], but should never be empty or unset"
exit 255
fi
if [[ ${GITHUB_REF} =~ refs/tags/v([0-9]+\.[0-9]+\.[0-9]+) ]]; then
VERSION=${BASH_REMATCH[1]}
Expand Down Expand Up @@ -182,6 +187,7 @@ jobs:
crane tag "${P}:${VERSION}" latest
fi
done
else
pack buildpack package \
"${PACKAGE}:${VERSION}" \
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ jobs:
set -euo pipefail
if [ -z "${GITHUB_REF+set}" ]; then
echo "GITHUB_REF set to [${GITHUB_REF-<unset>}], but should never be empty or unset"
exit 255
fi
if [[ ${GITHUB_REF} =~ refs/tags/v([0-9]+\.[0-9]+\.[0-9]+) ]]; then
VERSION=${BASH_REMATCH[1]}
Expand Down Expand Up @@ -161,6 +166,7 @@ jobs:
crane tag "${P}:${VERSION}" latest
fi
done
else
pack buildpack package \
"${PACKAGE}:${VERSION}" \
Expand All @@ -169,7 +175,7 @@ jobs:
fi
env:
FORMAT: image
PACKAGES: test1 test2
PACKAGES: test
VERSION: ${{ steps.version.outputs.version }}
unit:
name: Unit Test
Expand Down

0 comments on commit d43429a

Please sign in to comment.