Skip to content

Commit ee008c8

Browse files
committed
fix(workflow): update JS-only fallback validation
JS-only build produces: - dist/index.js - dist/cli.js.bz Not the old npm/npx/pnpm/yarn-cli.js files that were removed.
1 parent d54da49 commit ee008c8

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/provenance.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,8 @@ jobs:
111111
working-directory: packages/cli
112112
run: |
113113
# Verify build artifacts exist
114-
test -f dist/cli.js || exit 1
115-
test -f dist/npm-cli.js || exit 1
116-
test -f dist/npx-cli.js || exit 1
117-
test -f dist/pnpm-cli.js || exit 1
118-
test -f dist/yarn-cli.js || exit 1
114+
test -f dist/index.js || exit 1
115+
test -f dist/cli.js.bz || exit 1
119116
echo "✓ JS-only fallback package built successfully"
120117
- name: Publish JS-only fallback package
121118
if: ${{ inputs.js-fallback }}

0 commit comments

Comments
 (0)