0

我正在将我们现有的 Travis 任务迁移到 GH 操作。对于 Travis,以下命令将发布到 npm 并使用 npm 版本的发布标签名称。

script: yarn npm-bundle && npm version $TRAVIS_BRANCH --allow-same-version -m
      "chore - release version %s [skip ci]" --allow-empty

不幸的是,更改为以下不起作用...

        run: |
          yarn npm-bundle && npm version ${{ github.event.release.tag_name }} --allow-same-version -m "chore - release version %s [skip ci]" --allow-empty
          npm publish --access public --dry-run

它显然是空的,因为 npm 使用的是 package.json 中的版本。我尝试了其他一些变量,例如${{ github.head_ref }}

还...

run: |
          yarn npm-bundle -m "chore - release version %s [skip ci]" --allow-empty
          npm publish --tag ${{ github.event.release.tag_name }} --allow-same-version --access public --dry-run
4

2 回答 2

0

我已经通过重构以下内容解决了这个问题......

      - uses: actions/setup-node@v1
        with:
          node-version: 14.15.0
          registry-url: https://registry.npmjs.org/
      - run: yarn install
      - run: git config --global user.name "${{ github.actor }}"
      - run: git config --global user.email "github-action-${{ github.actor }}@users.noreply.github.com"
      - run: npm version ${{ github.event.release.tag_name }}
      - run: yarn npm-bundle
      - run: npm publish --access public
        env:
          NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

于 2021-06-21T09:41:48.897 回答
0

您可以在工作流程中使用npm-publish操作,而不是在 Travis 中使用的脚本。

如果你想寻找更多 NPM 可用的操作,你可以在你的Github Marketplace上找到它们

例如在这里,您可以在您的工作流程中使用类似的东西,run如果您需要使用yarn或其他命令,则可以通过其他步骤适应您的上下文:

on: push

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: actions/setup-node@v1
        with:
          node-version: 10
      - run: npm install
      - run: npm test
      - uses: JS-DevTools/npm-publish@v1
        with:
          token: ${{ secrets.NPM_TOKEN }}
          tag: <your release tag name>

有关此操作如何工作的更多信息,请查看此处

其他行动

如果您想检查,这个其他操作(发布到 npm)也可能很有趣。

于 2021-06-17T13:40:54.857 回答