ci: rewrite Gitea URL to internal for CI npm install
CI/CD / deploy (push) Failing after 1m21s Details

@cal/shared package references gitea.jeffemmett.com which is
unreachable from CI runner. Sed replaces with server:3000.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-04-01 12:25:10 -07:00
parent 32977b31cb
commit a78f6d6d40
1 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,9 @@ WORKDIR /app
# Copy package files
COPY package.json package-lock.json* ./
# Replace Gitea public URL with internal for CI builds
RUN sed -i 's|https://gitea.jeffemmett.com|http://server:3000|g' package.json
# Install dependencies
RUN npm install