5 Commits
15.0 ... 18.0

Author SHA1 Message Date
96b7bd3cb5 fix ci 2024-06-23 22:02:40 +08:00
8bb632c2a5 fix ci 2024-06-16 01:58:07 +08:00
0d43f06322 not use taobao npm 2024-04-11 20:32:22 +08:00
23078aa625 update to node20 2024-04-11 20:29:20 +08:00
9d4a414aea use aliyun mirror 2023-12-14 06:30:26 +08:00

View File

@ -4,7 +4,7 @@ description: 'build docker image and push to simcu code'
runs: runs:
using: 'composite' using: 'composite'
steps: steps:
- uses: docker://node:18 - uses: docker://node:20
with: with:
entrypoint: "/bin/bash" entrypoint: "/bin/bash"
args: | args: |
@ -16,7 +16,7 @@ runs:
entrypoint: "/bin/bash" entrypoint: "/bin/bash"
args: | args: |
-c 'echo "FROM nginx:alpine" > Dockerfile && \ -c 'echo "FROM nginx:alpine" > Dockerfile && \
echo "COPY dist /usr/share/nginx/html" >> Dockerfile && \ echo "COPY dist/browser /usr/share/nginx/html" >> Dockerfile && \
echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile && \ echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile && \
echo "已经构建完DOCKERFILE了" && \ echo "已经构建完DOCKERFILE了" && \
cat Dockerfile' cat Dockerfile'