Skip to content

Commit d01cc8b

Browse files
authored
Merge pull request #134 from dimforge/fix-canary
chore(ci): fix canary release pkg path for rapier-compat
2 parents 8fe5446 + 7a58fce commit d01cc8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ jobs:
9090
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9191
- name: Publish rapier3d-compat
9292
run: |
93-
cd rapier3d-compat/pkg3d;
93+
cd rapier-compat/pkg3d;
9494
npm version 0.0.0-$(git rev-parse --short HEAD)-$(date '+%Y%m%d') --git-tag-version false;
9595
npm publish --tag canary --access public;
9696
env:
9797
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9898
- name: Publish rapier2d-compat
9999
run: |
100-
cd rapier3d-compat/pkg2d;
100+
cd rapier-compat/pkg2d;
101101
npm version 0.0.0-$(git rev-parse --short HEAD)-$(date '+%Y%m%d') --git-tag-version false;
102102
npm publish --tag canary --access public;
103103
env:

0 commit comments

Comments
 (0)