From c7d107a5781046a13b58f984cc759196996cf2f7 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 24 Apr 2026 12:16:08 +0200 Subject: [PATCH] fix: use standard npm registry host --- .gitea/workflows/quality-assurance-template.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/quality-assurance-template.yml b/.gitea/workflows/quality-assurance-template.yml index 6ae6671..93cef34 100644 --- a/.gitea/workflows/quality-assurance-template.yml +++ b/.gitea/workflows/quality-assurance-template.yml @@ -49,11 +49,9 @@ jobs: version: 10 - name: ๐Ÿ” Registry Auth run: | - REGISTRY="${{ vars.REGISTRY_HOST || 'git.infra.mintel.me/api/packages/mmintel/npm' }}" + REGISTRY="${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" echo "@mintel:registry=https://$REGISTRY" > .npmrc - # Remove protocol if present for the token line - TOKEN_REGISTRY=$(echo "$REGISTRY" | sed 's|https://||') - echo "//$TOKEN_REGISTRY/:_authToken=${{ secrets.NPM_TOKEN || secrets.MINTEL_PRIVATE_TOKEN || secrets.GITEA_PAT }}" >> .npmrc + echo "//$REGISTRY/:_authToken=${{ secrets.NPM_TOKEN || secrets.GITEA_PAT || secrets.MINTEL_PRIVATE_TOKEN }}" >> .npmrc - name: ๐Ÿงน Wipe Workspace run: | rm -rf .next .turbo node_modules || true