Skip to content

Commit

Permalink
ci: fix local publish in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
m-radzikowski committed Jun 2, 2024
1 parent 908d3dd commit 38421e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
- name: Bump version
run: pnpm release --skip.commit --skip.tag

- name: Set local publishing config
run: pnpm config set '//localhost:4873/:_authToken' "fake"
- name: E2E tests
run: |
pnpm verdaccio &
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-sdk-client-mock-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"build:es": "tsc -p tsconfig.es.json",
"prebuild": "rimraf dist/",
"build": "pnpm run build:cjs && pnpm run build:es",
"local-publish": "pnpm publish --registry http://localhost:4873/ --no-git-checks"
"local-publish": "pnpm publish --registry http://localhost:4873/"
},
"module": "dist/es/index.js",
"main": "dist/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-sdk-client-mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"build:es": "tsc -p tsconfig.es.json",
"prebuild": "rimraf dist/",
"build": "pnpm run build:cjs && pnpm run build:es",
"local-publish": "pnpm publish --registry http://localhost:4873/ --no-git-checks"
"local-publish": "pnpm publish --registry http://localhost:4873/"
},
"module": "dist/es/index.js",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit 38421e1

Please sign in to comment.