5

在我的 github 项目中,我尝试自动创建一个新版本并将其发布到 NPM,只要有东西被推送到主分支。

这个想法

  1. 创建一个新的次要版本
  2. 将包发布到 NPM

我正在使用 github 操作。我的工作流程文件如下所示:

# This workflow will run tests using node and then publish a package to the npm registry when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package

on:
#trigger on every commit to the main branch
  push:
    branches:
      - main
      - master 

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
        with:
          node-version: 12
      - run: npm test

  publish-npm:
    needs: build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
        with:
          node-version: 12
          registry-url: https://registry.npmjs.org/
      - run: git config user.name $GITHUB_ACTOR
      - run: git config user.email gh-actions-${GITHUB_ACTOR}@github.com
      - run: git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
      - run: echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
      - run: npm version patch
      - run: npm publish
      - run: git push gh-origin HEAD:master --tags
        env:
          NODE_AUTH_TOKEN: ${{secrets.npm_token}}
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

https://github.com/ether/ep_align/actions/runs/322527776

我在发布时不断收到 404 错误。我不明白,因为包在这里在线:https ://www.npmjs.com/package/ep_align

npm ERR! code E404
npm ERR! 404 Not Found - PUT https://registry.npmjs.org/ep_align - Not found
npm ERR! 404 
npm ERR! 404  'ep_align@0.2.7' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

这个问题让我发疯了几个小时,我不知道它可能是什么。有任何想法吗?

4

1 回答 1

6

这只是您的令牌的身份验证问题。

你有没有在你的 中设置访问令牌Repository secrets?(您可能还想创建环境。)

https://docs.npmjs.com/creating-and-viewing-access-tokens

或者这也可能是授权问题。请检查您的令牌类型。它应该是自动化的。

这是我的一个例子> https://github.com/canberksinangil/canberk-playground

我在存储库设置下设置了我的令牌。 在此处输入图像描述

让我知道这是否有帮助:)

于 2020-12-21T21:29:23.303 回答