Skip to content

Commit

Permalink
Use pack experimental
Browse files Browse the repository at this point in the history
* fix CONFIG; otherwise it gets confused for another argument
  • Loading branch information
anthonydahanne committed Mar 15, 2024
1 parent 461f6d6 commit 68949a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions octo/package-buildpack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ PACKAGE=${PACKAGE_LIST[0]}

if [[ "${PUBLISH:-x}" == "true" ]]; then
pack -v buildpack package \
"${PACKAGE}:${VERSION}" "${CONFIG}" \
"${PACKAGE}:${VERSION}" ${CONFIG} \
--publish

if [[ -n ${VERSION_MINOR:-} && -n ${VERSION_MAJOR:-} ]]; then
Expand All @@ -40,6 +40,6 @@ if [[ "${PUBLISH:-x}" == "true" ]]; then

else
pack -v buildpack package \
"${PACKAGE}:${VERSION}" "${CONFIG}" \
"${PACKAGE}:${VERSION}" ${CONFIG} \
--format "${FORMAT}"
fi
Loading

0 comments on commit 68949a9

Please sign in to comment.