Skip to content

Commit 370cc54

Browse files
committed
fix(workflow): specify correct build target for cli-with-sentry
The workflow was building with the default 'cli' target instead of 'cli-sentry' target, causing the cli-with-sentry package to not be built before validation. Added --target cli-sentry flag to ensure the correct package is built.
1 parent 86781cb commit 370cc54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Prepare @socketsecurity/cli-with-sentry package for publishing
9090
run: node scripts/prepare-package-for-publish.mjs packages/cli-with-sentry ${{ env.SOCKET_VERSION }}
9191
- name: Build @socketsecurity/cli-with-sentry package
92-
run: INLINED_SOCKET_CLI_PUBLISHED_BUILD=1 INLINED_SOCKET_CLI_SENTRY_BUILD=1 pnpm run build
92+
run: INLINED_SOCKET_CLI_PUBLISHED_BUILD=1 INLINED_SOCKET_CLI_SENTRY_BUILD=1 pnpm run build --target cli-sentry
9393
env:
9494
SOCKET_CLI_DEBUG: ${{ inputs.debug }}
9595
- name: Validate @socketsecurity/cli-with-sentry package

0 commit comments

Comments
 (0)