rhine-var 0.9.19 → 0.9.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -119,9 +119,14 @@ jobs:
119
119
  run: yarn build
120
120
 
121
121
  - name: Configure npm Registry
122
- run: npm config set @RhineAI-Lab:registry=https://npm.pkg.github.com
122
+ run: |
123
+ npm config set @RhineAI-Lab:registry=https://npm.pkg.github.com
124
+ echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
125
+
126
+ - name: Debug npm config
127
+ run: npm config list
123
128
 
124
129
  - name: Publish to NPM
125
- run: npm publish --registry https://npm.pkg.github.com/RhineAI-Lab
130
+ run: npm publish
126
131
  env:
127
132
  NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rhine-var",
3
- "version": "0.9.19",
3
+ "version": "0.9.21",
4
4
  "description": "Variables that support multi-user collaboration and persistence, making collaboration and variable operations as simple as possible, with strict and well-defined type hints.",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",