copy nuget.config while deploy to every submodule.

This commit is contained in:
ruberoid 2025-10-17 12:26:22 +04:00
parent cf9af0e931
commit 1a3ffada92
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ RUN apt-get update && \
update-ca-certificates && \
rm -rf /var/lib/apt/lists/*
# Copy nuget.config from parent repository root
COPY ../../nuget.config /root/.nuget/NuGet/NuGet.Config
# Copy nuget.config (copied to submodule root by CI/CD)
COPY nuget.config /root/.nuget/NuGet/NuGet.Config
COPY . .

View File

@ -10,8 +10,8 @@ RUN apt-get update && \
update-ca-certificates && \
rm -rf /var/lib/apt/lists/*
# Copy nuget.config from parent repository root
COPY ../../nuget.config /root/.nuget/NuGet/NuGet.Config
# Copy nuget.config (copied to submodule root by CI/CD)
COPY nuget.config /root/.nuget/NuGet/NuGet.Config
COPY . .