-
-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add npm publish job for packages
- Loading branch information
1 parent
544bf92
commit 2802c92
Showing
2 changed files
with
43 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/bash | ||
|
||
npm publish node_modules/@analogjs/astro-angular --access public | ||
npm publish node_modules/@analogjs/content --access public | ||
npm publish node_modules/@analogjs/platform --access public | ||
npm publish node_modules/@analogjs/router --access public | ||
npm publish node_modules/@analogjs/trpc --access public | ||
npm publish node_modules/@analogjs/vite-plugin-angular --access public | ||
npm publish node_modules/@analogjs/vite-plugin-nitro --access public | ||
npm publish dist/packages/create-analog | ||
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN | ||
npm publish node_modules/@analogjs/astro-angular --access public --tag $TAG --dry-run | ||
npm publish node_modules/@analogjs/content --access public --tag $TAG --dry-run | ||
npm publish node_modules/@analogjs/platform --access public --tag $TAG --dry-run | ||
npm publish node_modules/@analogjs/router --access public --tag $TAG --dry-run | ||
npm publish node_modules/@analogjs/trpc --access public --tag $TAG --dry-run | ||
npm publish node_modules/@analogjs/vite-plugin-angular --access public --tag $TAG --dry-run | ||
npm publish node_modules/@analogjs/vite-plugin-nitro --access public --tag $TAG --dry-run | ||
npm publish dist/packages/create-analog --tag $TAG --dry-run |