We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05fe04a commit 8db257eCopy full SHA for 8db257e
.github/workflows/preview.yaml
@@ -27,7 +27,7 @@ jobs:
27
- args: [--no-frozen-lockfile]
28
- uses: actions/setup-node@v3
29
with:
30
- node-version: 16.x
+ node-version: 18.x
31
cache: pnpm
32
- uses: actions/setup-python@v4
33
.github/workflows/release.yaml
@@ -177,8 +177,9 @@ jobs:
177
tar -zcvf rtbot-npm-${{ github.ref_name }}.tar.gz npm-rtbot
178
- name: Release Npm Packages
179
run: |
180
- cd npm-wasm && pnpm publish
181
- cd npm-rtbot && pnpm publish
+ rm -rf node_modules package.json pnpm pnpm-lock.yaml
+ cd npm-wasm && pnpm publish --no-git-checks && cd..
182
+ cd npm-rtbot && pnpm publish --no-git-checks
183
env:
184
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
185
0 commit comments