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 17cd104 commit 66fe265Copy full SHA for 66fe265
.github/worflows/deploy.yaml
@@ -1,5 +1,3 @@
1
-name: Deploy PyScriptReact
2
-
3
on:
4
push:
5
branches: [main]
@@ -55,6 +53,16 @@ jobs:
55
53
pyscript-react.zip
56
54
57
- name: Publish to npm 🚀
58
- run: yarn publish
+ run: |
+ cd library
+ yarn publish
59
+ cd ..
60
+ for dir in library/*; do
61
+ if [ -d "$dir" ]; then
62
+ cd "$dir"
63
64
+ cd ../../
65
+ fi
66
+ done
67
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
68
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments