Skip to content

Commit 4c42902

Browse files
committed
force resolution
1 parent f97ed72 commit 4c42902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191

9292
- name: Publish npm package to Github package registry
9393
shell: pwsh
94-
run: npm publish packages/*.tgz
94+
run: npm publish "$((Resolve-Path packages/*.tgz).Path)"
9595
env:
9696
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9797

@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Publish npm package to Npmjs package registry
104104
shell: pwsh
105-
run: npm publish packages/*.tgz --access public
105+
run: npm publish "$((Resolve-Path packages/*.tgz).Path)" --access public
106106
if: github.event_name == 'release' && github.event.action == 'created'
107107
env:
108108
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)