Compare commits
14 Commits
a9b3723e76
...
main
Author | SHA1 | Date | |
---|---|---|---|
bcdb5e0c13 | |||
7e8e38fea6 | |||
80a3e3fc1b | |||
fec3be94c5 | |||
08b36b5dcb | |||
dd5f025bc4 | |||
dee4bfa7e9 | |||
94ff66b643 | |||
0d43f06322 | |||
23078aa625 | |||
9d4a414aea | |||
c6ca641436 | |||
cf0ff6b888 | |||
a402fd2191 |
31
action.yml
31
action.yml
@ -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://ubuntu:latest
|
||||||
|
with:
|
||||||
|
entrypoint: "/bin/bash"
|
||||||
|
args: |
|
||||||
|
-c 'echo "FROM nginx:alpine" > Dockerfile && \
|
||||||
|
echo "COPY dist/browser /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 ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \
|
||||||
-c 'echo "COPY dist /usr/share/nginx/html" >> Dockerfile'
|
echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \
|
||||||
-c 'echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile'
|
docker login ${{vars.DOCKER_REGISTRY}} -u ${{vars.DOCKER_USER}} -p ${{vars.DOCKER_PASS}} && \
|
||||||
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .'
|
docker push ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \
|
||||||
-c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}'
|
echo ${{vars.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功'
|
||||||
-c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}'
|
|
Reference in New Issue
Block a user