Skip to content

Commit aad7d0b

Browse files
committed
ci(steps): Add NPM Pack step
1 parent 7bb09ac commit aad7d0b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,16 @@ jobs:
6666
- name: Build package
6767
run: npm run build
6868

69-
- name: Sign package with Sigstore
69+
- name: Pack npm package
70+
run: npm pack
71+
72+
- name: List contents (for debugging)
73+
run: ls -l
74+
75+
- name: Sign package
7076
uses: sigstore/gh-action-sigstore-python@v3.0.1
7177
with:
72-
inputs: dist/*.tgz
78+
inputs: "*.tgz"
7379

7480
- name: Run Semantic Release
7581
env:

0 commit comments

Comments
 (0)