File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 6060 file : ${{ inputs.dockerfile }}
6161 push : true
6262 tags : ${{ env.IMAGE_PATH }}
63- cache-from : type=gha,scope=${{ inputs.service_name }}
64- cache-to : type=gha,mode=max,scope=${{ inputs.service_name }}
63+ # cache-from: type=gha,scope=${{ inputs.service_name }}
64+ # cache-to: type=gha,mode=max,scope=${{ inputs.service_name }}
6565
6666 - name : Deploy to Cloud Run
6767 id : deploy
Original file line number Diff line number Diff line change @@ -13,10 +13,12 @@ RUN corepack enable
1313WORKDIR /app
1414
1515COPY pnpm-lock.yaml pnpm-workspace.yaml ./
16- RUN --mount=type=cache,target=/root/.pnpm-store pnpm fetch
16+ # RUN --mount=type=cache,target=/root/.pnpm-store pnpm fetch
17+ RUN pnpm fetch
1718
1819COPY . .
19- RUN --mount=type=cache,target=/root/.pnpm-store pnpm install --frozen-lockfile --offline && pnpm run build
20+ # RUN --mount=type=cache,target=/root/.pnpm-store pnpm install --frozen-lockfile --offline && pnpm run build
21+ RUN pnpm install --frozen-lockfile --offline && pnpm run build
2022
2123WORKDIR /app/apps/tan-start-app
2224
You can’t perform that action at this time.
0 commit comments