Skip to content

Commit 09a205a

Browse files
committed
fix release pipelines
1 parent 0eaed71 commit 09a205a

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.woodpecker/.dev-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ steps:
1111
- cat .npmrc
1212
# installing the latest corepack manually because of https://github.com/nodejs/corepack/issues/612
1313
- npm i -g [email protected]
14-
- pnpm config --location project set '//registry.npmjs.org/:_authToken' $NPM_ACCESS_TOKEN
14+
# pnpm doesn't handle this setting well, so we do it with npm
15+
- npm config set --location project '//registry.npmjs.org/:_authToken' "${NPM_ACCESS_TOKEN}"
1516
- pnpm i --frozen-lockfile
1617
- pnpm build
1718
- pnpm publish packages/ember-rdfa-editor --access public --tag dev --no-git-checks

.woodpecker/.release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ steps:
1010
image: node:22-slim
1111
commands:
1212
- npm config set ignore-scripts true
13-
- cat .npmrc
1413
# installing the latest corepack manually because of https://github.com/nodejs/corepack/issues/612
1514
- npm i -g [email protected]
16-
- pnpm config --location project set '//registry.npmjs.org/:_authToken' $NPM_ACCESS_TOKEN
15+
# pnpm doesn't handle this setting well, so we do it with npm
16+
- npm config set --location project '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
1717
- pnpm i --frozen-lockfile
1818
- pnpm build
1919
- pnpm publish packages/ember-rdfa-editor --access public --tag next --no-git-checks
2020
environment:
21-
NPM_ACCESS_TOKEN:
21+
NPM_TOKEN:
2222
from_secret: npm_access_token
2323
when:
2424
ref:
@@ -27,15 +27,15 @@ steps:
2727
image: node:22-slim
2828
commands:
2929
- npm config set ignore-scripts true
30-
- cat .npmrc
3130
# installing the latest corepack manually because of https://github.com/nodejs/corepack/issues/612
3231
- npm i -g [email protected]
33-
- pnpm config --location project set '//registry.npmjs.org/:_authToken' $NPM_ACCESS_TOKEN
32+
# pnpm doesn't handle this setting well, so we do it with npm
33+
- npm config set --location project '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
3434
- pnpm i --frozen-lockfile
3535
- pnpm build
3636
- pnpm publish packages/ember-rdfa-editor --access public --tag latest --no-git-checks
3737
environment:
38-
NPM_ACCESS_TOKEN:
38+
NPM_TOKEN:
3939
from_secret: npm_access_token
4040
when:
4141
ref:

.woodpecker/.test-compat-4.12.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ steps:
44
commands:
55
- echo "inject-workspace-packages=true" >> .npmrc
66
- echo "sync-injected-deps-after-scripts[]=build" >> .npmrc
7-
- cat .npmrc
87
# installing the latest corepack manually because of https://github.com/nodejs/corepack/issues/612
98
- npm i -g [email protected]
109
- pnpm i --no-frozen-lockfile

.woodpecker/.test-compat-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ steps:
44
commands:
55
- echo "inject-workspace-packages=true" >> .npmrc
66
- echo "sync-injected-deps-after-scripts[]=build" >> .npmrc
7-
- cat .npmrc
87
# installing the latest corepack manually because of https://github.com/nodejs/corepack/issues/612
98
- npm i -g [email protected]
109
- pnpm i --no-frozen-lockfile

0 commit comments

Comments
 (0)