ci: rewrite Gitea URL to internal for CI npm install
CI/CD / deploy (push) Failing after 1m21s
Details
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:
parent
32977b31cb
commit
a78f6d6d40
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue