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