File tree Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -60,28 +60,13 @@ jobs:
60
60
env :
61
61
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }} #
62
62
63
- - name : Temp LS packages
64
- run : |
65
- cd packages
66
- ls @postgrestools/
67
-
68
- - name : Temp publish
69
- if : inputs.is-prerelease != 'true'
70
- run : |
71
- npm publish "@postgrestools/postgrestools_aarch64-apple-darwin" --tag latest --access public --provenance
72
- npm publish "@postgrestools/postgrestools_aarch64-windows-msvc" --tag latest --access public --provenance
73
- npm publish "@postgrestools/postgrestools_aarch64-linux-gnu" --tag latest --access public --provenance
74
- npm publish "@postgrestools/postgrestools_x86_64-apple-darwin" --tag latest --access public --provenance
75
- npm publish "@postgrestools/postgrestools_x86_64-windows-msvc" --tag latest --access public --provenance
76
- npm publish "@postgrestools/postgrestools_x86_64-linux-gnu" --tag latest --access public --provenance
77
- env :
78
- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
79
-
80
63
- name : Publish npm packages as latest
81
64
if : inputs.is-prerelease != 'true'
82
65
run : |
83
66
for package in packages/@postgrestools/*; do
84
- npm publish "$package" --tag latest --access public --provenance
67
+ if [[ "$package_name" != "backend-jsonrpc" && "$package_name" != "postgrestools" ]]; then
68
+ npm publish "$package" --tag latest --access public --provenance
69
+ fi
85
70
done
86
71
env :
87
72
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments