Compare commits

...

10 Commits

Author SHA1 Message Date
08b36b5dcb fix bug 2024-05-23 13:29:30 +08:00
dd5f025bc4 fix registry 2024-05-23 11:28:03 +08:00
dee4bfa7e9 revert 2024-04-20 08:14:45 +08:00
94ff66b643 for old angular 11 2024-04-20 08:14:25 +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,29 @@ 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 "npm install && \
-c " npm run build -- --outputPath=dist" npm run build -- --output-path=dist"
- uses: docker://ubuntu:latest
with:
entrypoint: "/bin/bash"
args: |
-c 'echo "FROM nginx:alpine" > Dockerfile && \
echo "COPY dist /usr/share/nginx/html" >> Dockerfile && \
echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile && \
echo "已经构建完DOCKERFILE了" && \
cat Dockerfile'
- uses: docker://docker:git - uses: docker://docker:git
with: with:
entrypoint: "/bin/bash" entrypoint: "/bin/sh"
args: | args: |
-c 'echo "FROM nginx:alpine" > Dockerfile' -c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \
-c 'echo "COPY dist /usr/share/nginx/html" >> Dockerfile' echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \
-c 'echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile' docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .' docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \
-c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}' echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功'
-c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}'