test
This commit is contained in:
parent
a9b3723e76
commit
a402fd2191
25
action.yml
25
action.yml
@ -8,16 +8,25 @@ runs:
|
|||||||
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 -- --outputPath=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/bash"
|
||||||
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 }}'
|
|
Loading…
Reference in New Issue
Block a user