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 4466f39 commit b0391e0Copy full SHA for b0391e0
2 files changed
.github/workflows/publish-package.yaml
@@ -38,8 +38,16 @@ jobs:
38
env:
39
REDIS_URL: redis://redis:6379
40
run: bun run test
41
+
42
+ - name: Copy extra files
43
+ run: cp ./README.md ./LICENSE ./packages/cache
44
- - name: Publish package
45
+ - name: Publish package to NPM
46
+ env:
47
+ NPM_CONFIG_TOKEN: ${{ secrets.NPM_CONFIG_TOKEN }}
48
+ run: cd ./packages/cache && bun publish --access public --tolerate-republish
49
50
+ - name: Publish package to GitHub
51
52
NPM_CONFIG_TOKEN: ${{ secrets.NPM_CONFIG_TOKEN }}
- run: cd ./packages/live && bun publish --access public
53
+ run: bun publish --access public --registry https://npm.pkg.github.com --tolerate-republish
packages/cache/LICENSE
0 commit comments