gpt4 book ai didi

github - 如何在 Github Action 中使用 yarn 安装私有(private)包?

转载 作者:行者123 更新时间:2023-12-03 18:34:16 28 4
gpt4 key购买 nike

我目前的工作流程:

name: Node CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.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: npm install, build, and test
run: |
npm install yarn -g
yarn
yarn test
env:
CI: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

我已经设置了我的 NPM_TOKEN在 repo secret 区域。

该 token 也在 Netlify 上使用,并且 netlify 构建过程有效。

当此工作流程运行时,我的任何私有(private)包都会收到 404。

我究竟做错了什么?

最佳答案

找到了一个修复:

写出.npmrc作为工作的一部分,而不是依赖于环境变量。

name: Node CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.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: npm install, build, and test
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
npm install yarn -g
yarn
yarn test
env:
CI: true

关于github - 如何在 Github Action 中使用 yarn 安装私有(private)包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58430182/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com