fix: use verified registry token for docker build to avoid 401
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 42s
Build & Deploy / 🧪 QA (push) Successful in 1m32s
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled

This commit is contained in:
2026-05-12 12:08:43 +02:00
parent bd8660b639
commit c113c27743
2 changed files with 19 additions and 2 deletions

View File

@@ -102,3 +102,9 @@ echo "✅ .npmrc hardened with verified token on ${WORKING_DOMAIN}."
echo "--- Generated .npmrc (masked) ---"
sed 's/_authToken=.*/_authToken=********/' .npmrc
echo "--------------------------------"
# --- OUTPUT FOR CI ---
if [ -n "$GITHUB_OUTPUT" ]; then
echo "working_token=${WORKING_TOKEN}" >> "$GITHUB_OUTPUT"
echo "working_domain=${WORKING_DOMAIN}" >> "$GITHUB_OUTPUT"
fi