Fix checkout-pr by using fetch & checkout instead of pull

This commit is contained in:
Louis Lam 2022-09-09 15:49:39 +08:00
parent e90a4f1f34
commit 7b8f9c7655
2 changed files with 9 additions and 3 deletions

View file

@ -44,8 +44,9 @@ RUN apt update \
RUN rm -rf ./* && chown node /app
USER node
RUN git clone --branch pr-test https://github.com/louislam/uptime-kuma.git .
RUN git config --global user.email "no-reply@no-reply.com"
RUN git config --global user.name "PR Tester"
RUN git clone https://github.com/louislam/uptime-kuma.git .
RUN npm ci
EXPOSE 3000 3001