Skip to content

Commit 6e44432

Browse files
committed
fix: try to see why semantic release is skipping files
1 parent 0713b0d commit 6e44432

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ jobs:
2323
run: yarn install
2424
- name: Build package
2525
run: yarn run build
26+
- name: list files in dist
27+
run: |
28+
sudo apt-get install tree
29+
tree dist
2630
- name: Install semantic release
2731
run: yarn add -D semantic-release @semantic-release/changelog @semantic-release/git conventional-changelog-conventionalcommits
2832
- name: Semantic Release
29-
run: npx semantic-release
33+
run: npx semantic-release --debug
3034
env:
3135
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3236
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)