This commit is contained in:
2025-11-07 21:34:57 +08:00
parent 3376cb924d
commit 770e27acff

View File

@@ -1,34 +1,34 @@
# action.yml # action.yml
name: 'build docker image and push to code' name: "build docker image and push to code"
description: 'build docker image and push to simcu code' description: "build docker image and push to simcu code"
runs: runs:
using: 'composite' using: "composite"
steps: steps:
- uses: docker://node:20 - uses: docker://node:20
with: with:
entrypoint: "/bin/bash" entrypoint: "/bin/bash"
args: | args: |
-c "export https_proxy=http://100.100.13.14:8118 && \ -c "export https_proxy=http://100.100.13.14:8118 && \
export http_proxy=http://100.100.13.14:8118 && \ export http_proxy=http://100.100.13.14:8118 && \
npm install && \ npm install && \
npm run build -- --output-path=dist --define AppVersion="'${{ github.ref_name }}'"" npm run build -- --output-path=dist --define AppVersion="'${{github.ref_name}}'"
- uses: docker://ubuntu:latest - 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 && \
echo "COPY dist/browser /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'
- uses: docker://docker:git - uses: docker://docker:git
with: with:
entrypoint: "/bin/sh" entrypoint: "/bin/sh"
args: | args: |
-c 'docker build -t ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \ -c 'docker build -t ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \
echo ${{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 login ${{vars.DOCKER_REGISTRY}} -u ${{vars.DOCKER_USER}} -p ${{vars.DOCKER_PASS}} && \
docker push ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \ docker push ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \
echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功' echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功'