9 Commits

Author SHA1 Message Date
3de0b1e3fb add proxy 2024-07-28 22:01:48 +08:00
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
c6ca641436 fix output-path 2023-08-27 04:32:29 +08:00
cf0ff6b888 test 2023-08-22 15:04:15 +08:00
a402fd2191 test 2023-08-22 14:51:31 +08:00

View File

@ -4,20 +4,31 @@ 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: |
-c "npm install" -c "export https_proxy=http://100.100.13.14:8118 && \
-c " npm run build -- --outputPath=dist" export http_proxy=http://100.100.13.14:8118 && \
npm install && \
npm run build -- --output-path=dist"
- uses: docker://docker:git - uses: docker://ubuntu:latest
with: with:
entrypoint: "/bin/bash" entrypoint: "/bin/bash"
args: | args: |
-c 'echo "FROM nginx:alpine" > Dockerfile' -c 'echo "FROM nginx:alpine" > Dockerfile && \
-c 'echo "COPY dist /usr/share/nginx/html" >> Dockerfile' echo "COPY dist/browser /usr/share/nginx/html" >> Dockerfile && \
-c 'echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile' echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile && \
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .' echo "已经构建完DOCKERFILE了" && \
-c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}' cat Dockerfile'
-c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}'
- uses: docker://docker:git
with:
entrypoint: "/bin/sh"
args: |
-c 'docker build -t ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \
echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \
docker login ${{vars.DOCKER_REGISTRY}} -u ${{vars.DOCKER_USER}} -p ${{vars.DOCKER_PASS}} && \
docker push ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \
echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功'