diff --git a/action.yml b/action.yml index 289185e..9906b2e 100644 --- a/action.yml +++ b/action.yml @@ -8,16 +8,25 @@ runs: with: entrypoint: "/bin/bash" args: | - -c "npm install" - -c " npm run build -- --outputPath=dist" + -c "npm install && \ + 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 with: entrypoint: "/bin/bash" args: | - -c 'echo "FROM nginx:alpine" > Dockerfile' - -c 'echo "COPY dist /usr/share/nginx/html" >> Dockerfile' - -c 'echo "WORKDIR /usr/share/nginx/html/" >> Dockerfile' - -c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .' - -c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}' - -c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}' \ No newline at end of file + -c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . && \ + echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}已经构建完了 && \ + docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} && \ + docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} && \ + echo ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}推送成功' \ No newline at end of file