From 432c2481e0d90ee52dd6024dac3aa39fd4985f9d Mon Sep 17 00:00:00 2001 From: Sasha Malahov Date: Thu, 9 Jul 2026 12:42:32 -0400 Subject: [PATCH] fix(ci): add GPR auth for @belarusian/* packages --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2de360c..6b67de0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,11 @@ jobs: node-version: ${{ matrix.node-version }} cache: npm + - name: Configure GPR auth + run: | + echo "@belarusian:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci @@ -42,6 +47,11 @@ jobs: node-version: 22.x cache: npm + - name: Configure GPR auth + run: | + echo "@belarusian:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci