chore: use pnpm 8.11.0

This commit is contained in:
stxer
2025-05-16 01:48:39 +08:00
committed by GitHub
parent 9960bc2149
commit c0ee53d058
2 changed files with 4 additions and 1 deletions

View File

@@ -39,6 +39,9 @@ jobs:
- name: Build and push Docker image
run: |
bash -c "$PRE_BUILD_SCRIPT"
pushd source
git rev-parse HEAD
popd
export IMAGE_TAG="$REGISTRY/$IMAGE_NAME:$TAG_NAME"
echo "Building image $IMAGE_TAG"
docker build -t $IMAGE_TAG .

View File

@@ -4,7 +4,7 @@ WORKDIR /app
COPY ./source .
RUN npm install -g pnpm@8.9.1
RUN npm install -g pnpm@8.11.0
RUN pnpm i
RUN pnpm build