From ba8566a20c0cd78f9c4482610a390cc1572a9ce2 Mon Sep 17 00:00:00 2001
From: paketo-bot <paketo-bot@users.noreply.github.com>
Date: Fri, 10 May 2024 05:16:21 +0000
Subject: [PATCH] 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>
---
 .github/pipeline-version                | 2 +-
 .github/workflows/pb-create-package.yml | 2 +-
 .github/workflows/pb-tests.yml          | 2 +-
 scripts/build.sh                        | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/pipeline-version b/.github/pipeline-version
index e2ba070..ebeef2f 100644
--- a/.github/pipeline-version
+++ b/.github/pipeline-version
@@ -1 +1 @@
-1.37.5
+1.38.0
diff --git a/.github/workflows/pb-create-package.yml b/.github/workflows/pb-create-package.yml
index ae20c6c..96f2b56 100644
--- a/.github/workflows/pb-create-package.yml
+++ b/.github/workflows/pb-create-package.yml
@@ -188,7 +188,7 @@ jobs:
                 else
                   pack -v buildpack package \
                     "${PACKAGE}:${VERSION}" ${CONFIG} \
-                    --format "${FORMAT}"
+                    --format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish")
                 fi
               env:
                 PACKAGES: docker.io/paketobuildpacks/syft gcr.io/paketo-buildpacks/syft
diff --git a/.github/workflows/pb-tests.yml b/.github/workflows/pb-tests.yml
index ea688a4..d0a9087 100644
--- a/.github/workflows/pb-tests.yml
+++ b/.github/workflows/pb-tests.yml
@@ -173,7 +173,7 @@ jobs:
                 else
                   pack -v buildpack package \
                     "${PACKAGE}:${VERSION}" ${CONFIG} \
-                    --format "${FORMAT}"
+                    --format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish")
                 fi
               env:
                 FORMAT: image
diff --git a/scripts/build.sh b/scripts/build.sh
index dc48240..11e6bd6 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -2,7 +2,7 @@
 set -euo pipefail
 
 GOMOD=$(head -1 go.mod | awk '{print $2}')
-GOOS="linux" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
+GOOS="linux" GOARCH="amd64" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
 GOOS="linux" GOARCH="arm64" go build -ldflags='-s -w' -o linux/arm64/bin/main "$GOMOD/cmd/main"
 
 if [ "${STRIP:-false}" != "false" ]; then