mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-26 22:26:08 +08:00
Merge pull request #13 from crazy-max/yarn-cfg
chore: tweak yarn config
This commit is contained in:
commit
ae3911e977
@ -1,5 +1,14 @@
|
|||||||
nodeLinker: node-modules
|
nodeLinker: node-modules
|
||||||
|
|
||||||
|
npmAuthToken: "${NODE_AUTH_TOKEN:-fallback}"
|
||||||
|
|
||||||
|
logFilters:
|
||||||
|
# https://yarnpkg.com/advanced/error-codes
|
||||||
|
- code: YN0013
|
||||||
|
level: discard
|
||||||
|
- code: YN0076
|
||||||
|
level: discard
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
||||||
spec: "@yarnpkg/plugin-interactive-tools"
|
spec: "@yarnpkg/plugin-interactive-tools"
|
||||||
|
@ -97,10 +97,5 @@ RUN --mount=type=bind,target=.,rw \
|
|||||||
fi
|
fi
|
||||||
yarn install
|
yarn install
|
||||||
yarn run build
|
yarn run build
|
||||||
npm config set //registry.npmjs.org/:_authToken $(cat /run/secrets/NODE_AUTH_TOKEN)
|
NODE_AUTH_TOKEN=$(cat /run/secrets/NODE_AUTH_TOKEN) yarn npm publish --access public --tag ${GITHUB_REF#refs/tags/v}
|
||||||
npm version --no-git-tag-version ${GITHUB_REF#refs/tags/v}
|
|
||||||
npm publish --access public
|
|
||||||
|
|
||||||
# FIXME: Can't publish with yarn berry atm: https://github.com/changesets/changesets/pull/674
|
|
||||||
#NODE_AUTH_TOKEN=$(cat /run/secrets/NODE_AUTH_TOKEN) yarn publish --no-git-tag-version --new-version ${GITHUB_REF#refs/tags/v}
|
|
||||||
EOT
|
EOT
|
||||||
|
Loading…
Reference in New Issue
Block a user