From 7cdfe5d7f8e12da3b95b8c6dcce5b37940c0d0b6 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 27 Feb 2026 00:51:28 +0100 Subject: [PATCH] fix(ci): migrate ci.yml from Verdaccio to Gitea Packages --- .gitea/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f2551a03..16b6b8ab 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -27,14 +27,13 @@ jobs: - name: ๐Ÿ” Configure Private Registry run: | - REGISTRY="${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" - echo "@mintel:registry=https://$REGISTRY" > .npmrc - echo "//$REGISTRY/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc + echo "@mintel:registry=https://git.infra.mintel.me/api/packages/mmintel/npm" > .npmrc + echo "//git.infra.mintel.me/api/packages/mmintel/npm/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - name: Install dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile env: - NPM_TOKEN: ${{ secrets.REGISTRY_PASS }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: ๐Ÿงช QA Checks env: