chore: implement robust registry authentication via functional discovery
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 41s
Build & Deploy / 🧪 QA (push) Failing after 1m1s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-05-12 11:02:18 +02:00
parent 6a8f4acbc9
commit c627f1d724
4 changed files with 80 additions and 7 deletions

View File

@@ -170,9 +170,13 @@ jobs:
with:
node-version: 20
- name: Install dependencies
- name: 🔐 Registry Auth
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITEA_PAT: ${{ secrets.GITEA_PAT }}
MINTEL_PRIVATE_TOKEN: ${{ secrets.MINTEL_PRIVATE_TOKEN }}
run: bash scripts/registry-auth.sh
- name: Install dependencies
run: |
pnpm store prune
pnpm install --no-frozen-lockfile
@@ -383,10 +387,14 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
id: deps
- name: 🔐 Registry Auth
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITEA_PAT: ${{ secrets.GITEA_PAT }}
MINTEL_PRIVATE_TOKEN: ${{ secrets.MINTEL_PRIVATE_TOKEN }}
run: bash scripts/registry-auth.sh
- name: Install dependencies
id: deps
run: |
pnpm store prune
pnpm install --no-frozen-lockfile