We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0633a0 commit 8f06139Copy full SHA for 8f06139
1 file changed
.github/workflows/publish.yml
@@ -36,6 +36,9 @@ jobs:
36
- name: Build
37
run: pnpm run build
38
39
+ - name: List dist contents
40
+ run: ls -lR dist
41
+
42
# Optional: Add a test step here if you have tests
43
# - name: Test
44
# run: pnpm test
@@ -45,6 +48,12 @@ jobs:
45
48
git config --global user.name "github-actions[bot]"
46
49
git config --global user.email "github-actions[bot]@users.noreply.github.com"
47
50
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
57
- name: Release
58
env:
59
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments