Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pack from 0.15.0 to 0.18.0 #224

Merged
merged 1 commit into from
Apr 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions octo/create-builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
set -euo pipefail

if [[ -n "${PUBLISH+x}" ]]; then
pack create-builder \
pack builder create \
"${BUILDER}:${VERSION}" \
--config builder.toml \
--publish

echo "::set-output name=digest::$(crane digest "${BUILDER}:${VERSION}")"
else
pack create-builder \
pack builder create \
"${BUILDER}:${VERSION}" \
--config builder.toml
fi
2 changes: 1 addition & 1 deletion octo/octo.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
const (
CraneVersion = "0.1.4"
GoVersion = "1.15"
PackVersion = "0.15.0"
PackVersion = "0.18.0"
RichGoVersion = "0.3.3"
YJVersion = "5.0.0"
)
Expand Down
4 changes: 2 additions & 2 deletions octo/package-buildpack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
set -euo pipefail

if [[ -n "${PUBLISH+x}" ]]; then
pack package-buildpack \
pack buildpack package \
"${PACKAGE}:${VERSION}" \
--config "${HOME}"/package.toml \
--publish

crane tag "${PACKAGE}:${VERSION}" latest
echo "::set-output name=digest::$(crane digest "${PACKAGE}:${VERSION}")"
else
pack package-buildpack \
pack buildpack package \
"${PACKAGE}:${VERSION}" \
--config "${HOME}"/package.toml \
--format "${FORMAT}"
Expand Down