Skip to content

Commit 77337ff

Browse files
committed
Release v0.22.2-canary.1
Remove NPM token
1 parent 7cda384 commit 77337ff

File tree

9 files changed

+7
-20
lines changed

9 files changed

+7
-20
lines changed

.github/workflows/gh-pages.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ jobs:
3939
- name: Install dependencies
4040
working-directory: ./out
4141
run: yarn install --immutable
42-
env:
43-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
4442

4543
- name: Build app
4644
working-directory: ./out

.github/workflows/pkg-pr-new.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ jobs:
4141
- name: Install dependencies
4242
if: steps.cache.outputs.cache-hit != 'true'
4343
run: yarn install --immutable
44-
env:
45-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
4644

4745
- name: Verify
4846
run: yarn verify

.github/workflows/publish.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ jobs:
4848
- name: Install dependencies
4949
working-directory: ./out
5050
run: yarn install --immutable
51-
env:
52-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
5351

5452
- name: Verify
5553
working-directory: ./out
@@ -79,8 +77,6 @@ jobs:
7977
run: |
8078
echo "Publishing with tag: $NPM_TAG"
8179
yarn workspaces foreach -A --no-private npm publish --tolerate-republish --provenance --access public --tag ${NPM_TAG:-latest}
82-
env:
83-
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
8480
8581
- name: Create GitHub Release
8682
if: github.ref_type == 'tag'
@@ -118,8 +114,6 @@ jobs:
118114
- name: Install dependencies
119115
working-directory: ./out
120116
run: yarn install --immutable
121-
env:
122-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
123117

124118
- name: Verify
125119
working-directory: ./out

.github/workflows/verify.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ jobs:
4343
- name: Install dependencies
4444
if: steps.cache.outputs.cache-hit != 'true'
4545
run: yarn install --immutable
46-
env:
47-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
4846

4947
- name: Verify
5048
run: yarn verify

.yarnrc.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
nodeLinker: node-modules
22

3-
npmAlwaysAuth: true
4-
5-
npmAuthToken: "${NPM_AUTH_TOKEN:-}"
6-
73
npmPublishAccess: public
84

95
npmPublishRegistry: "https://registry.npmjs.org"

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybooker/cli",
3-
"version": "0.22.2-canary.0",
3+
"version": "0.22.2-canary.1",
44
"type": "module",
55
"bin": "./dist/index.js",
66
"description": "Storybooker CLI for uploading builds and files.",

packages/core/deno.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
33
"name": "@storybooker/core",
4-
"version": "0.22.2-canary.0",
4+
"version": "0.22.2-canary.1",
55
"license": "MIT",
66
"publish": {
77
"include": ["src", "README.md", "openapi.json"]
88
},
9+
"imports": {
10+
"@azure/core-rest-pipeline": "npm:@azure/core-rest-pipeline"
11+
},
912
"exports": {
1013
".": "./src/index.ts",
1114
"./_internal/adapter": "./src/adapters/_internal/index.ts",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "storybooker",
3-
"version": "0.22.2-canary.0",
3+
"version": "0.22.2-canary.1",
44
"type": "module",
55
"description": "Manage Storybook instances on your own infrastructure with ease.",
66
"author": {

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybooker/ui",
3-
"version": "0.22.2-canary.0",
3+
"version": "0.22.2-canary.1",
44
"type": "module",
55
"description": "Basic UI for Storybooker app",
66
"author": {

0 commit comments

Comments
 (0)