Skip to content

Commit 8f06139

Browse files
committed
chore: add diagnostic logging to publish workflow
1 parent f0633a0 commit 8f06139

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
- name: Build
3737
run: pnpm run build
3838

39+
- name: List dist contents
40+
run: ls -lR dist
41+
3942
# Optional: Add a test step here if you have tests
4043
# - name: Test
4144
# run: pnpm test
@@ -45,6 +48,12 @@ jobs:
4548
git config --global user.name "github-actions[bot]"
4649
git config --global user.email "github-actions[bot]@users.noreply.github.com"
4750
51+
- name: Pack tarball locally for inspection
52+
run: pnpm pack --pack-destination ./ci-pack
53+
54+
- name: List tarball contents
55+
run: tar -tvf ./ci-pack/*.tgz
56+
4857
- name: Release
4958
env:
5059
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)