从github Actions向github软件包注册表发布NPM模块



到目前为止,我的YML一直在添加基于其他stackoverflow线程+docs:的位

name: Node install, build and test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Create NPMRC
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN}}
- name: Publish to Github Packages
run: |
npm config set _auth $NODE_AUTH_TOKEN
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN}}

在我的包.json中,我有:

"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},

通过以上配置,我不断获得

E400 Bad Request
Your request could not be authenticated by the Github Pacakges service. Please ensure your access token is valid and has the appropriate scopes configured.

您在~/.npmrc文件中写入了错误的内容。

应该是//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }},但您正在进行//registry.npmjs.org/:_authToken=${{ secrets.GITHUB_TOKEN }}

最新更新