We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f97ed72 commit 4c42902Copy full SHA for 4c42902
.github/workflows/build.yml
@@ -91,7 +91,7 @@ jobs:
91
92
- name: Publish npm package to Github package registry
93
shell: pwsh
94
- run: npm publish packages/*.tgz
+ run: npm publish "$((Resolve-Path packages/*.tgz).Path)"
95
env:
96
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
97
@@ -102,7 +102,7 @@ jobs:
102
103
- name: Publish npm package to Npmjs package registry
104
105
- run: npm publish packages/*.tgz --access public
+ run: npm publish "$((Resolve-Path packages/*.tgz).Path)" --access public
106
if: github.event_name == 'release' && github.event.action == 'created'
107
108
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments