Skip to content

Commit b59a367

Browse files
paketo-botgithub-actions[bot]
authored andcommitted
Bump pipeline from 1.37.5 to 1.38.0
Bumps pipeline from 1.37.5 to 1.38.0. Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 87b9118 commit b59a367

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/pipeline-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.37.5
1+
1.38.0

.github/workflows/pb-create-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
else
189189
pack -v buildpack package \
190190
"${PACKAGE}:${VERSION}" ${CONFIG} \
191-
--format "${FORMAT}"
191+
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish")
192192
fi
193193
env:
194194
PACKAGES: docker.io/paketobuildpacks/datadog gcr.io/paketo-buildpacks/datadog

.github/workflows/pb-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
else
174174
pack -v buildpack package \
175175
"${PACKAGE}:${VERSION}" ${CONFIG} \
176-
--format "${FORMAT}"
176+
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish")
177177
fi
178178
env:
179179
FORMAT: image

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
set -euo pipefail
33

44
GOMOD=$(head -1 go.mod | awk '{print $2}')
5-
GOOS="linux" go build -ldflags='-s -w' -o "linux/amd64/bin/helper" "$GOMOD/cmd/helper"
5+
GOOS="linux" GOARCH="amd64" go build -ldflags='-s -w' -o "linux/amd64/bin/helper" "$GOMOD/cmd/helper"
66
GOOS="linux" GOARCH="arm64" go build -ldflags='-s -w' -o "linux/arm64/bin/helper" "$GOMOD/cmd/helper"
7-
GOOS="linux" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
7+
GOOS="linux" GOARCH="amd64" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
88
GOOS="linux" GOARCH="arm64" go build -ldflags='-s -w' -o linux/arm64/bin/main "$GOMOD/cmd/main"
99

1010
if [ "${STRIP:-false}" != "false" ]; then

0 commit comments

Comments
 (0)