GitHub Actions で GitHub Package Registry にあるパッケージをインストールするときに認証エラーが出たときの解決方法 (npm)
3308 ワード
GitHub Actions で GitHub Package Registry にあるパッケージをnpm install
するときに認証エラーが出たときの解決方法を2つまとめました。
Unable to authenticate, need: Basic realm="GitHub Package Registry"
とかでずっこけてる人向けです。
ざっくり
setup-nodeを使ったやり方
これが一番簡単NODE_AUTH_TOKEN
を忘れないように!
workflow.yml
- name: Use Node.js v10
uses: actions/setup-node@v1
with:
node-version: '10.x'
registry-url: 'https://npm.pkg.github.com/'
scope: '@owner'
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
~/.npmrc に直接書き込む
複数追加するときにはこれが良さそう(?)
ubuntu
とmac
はこれで大丈夫だけどwindows
はまた違う(コマンドプロンプトあんまり分からない)
workflow.yml
- run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
- run: echo "@owner1:registry=https://npm.pkg.github.com/" >> ~/.npmrc
- run: echo "@owner2:registry=https://npm.pkg.github.com/" >> ~/.npmrc
参考
Author And Source
この問題について(GitHub Actions で GitHub Package Registry にあるパッケージをインストールするときに認証エラーが出たときの解決方法 (npm)), 我々は、より多くの情報をここで見つけました https://qiita.com/InkoHX/items/a433e51794ce78cc9bec著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .