test
This commit is contained in:
parent
d31100ddd6
commit
4ac2e87668
45
action.yml
45
action.yml
@ -4,24 +4,29 @@ description: 'build docker image and push to simcu code'
|
|||||||
runs:
|
runs:
|
||||||
using: 'composite'
|
using: 'composite'
|
||||||
steps:
|
steps:
|
||||||
- uses: docker://mcr.microsoft.com/dotnet/sdk:7.0
|
- uses: docker://mcr.microsoft.com/dotnet/sdk:7.0
|
||||||
with:
|
with:
|
||||||
args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App
|
args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App
|
||||||
|
|
||||||
- uses: docker://docker:git
|
- uses: docker://ubuntu:latest
|
||||||
with:
|
with:
|
||||||
entrypoint: "/bin/sh"
|
entrypoint: "/bin/bash"
|
||||||
args: |
|
args: |
|
||||||
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile'
|
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile'
|
||||||
-c 'echo "COPY dist /home" >> Dockerfile'
|
-c 'echo "COPY dist /home" >> Dockerfile'
|
||||||
-c 'echo "WORKDIR /home" >> Dockerfile'
|
-c 'echo "WORKDIR /home" >> Dockerfile'
|
||||||
-c 'echo "ENTRYPOINT [\"./App\"]" >> Dockerfile'
|
-c 'echo "ENTRYPOINT [\"./App\"]" >> Dockerfile'
|
||||||
-c "echo 已经构建完DOCKERFILE了"
|
-c "echo 已经构建完DOCKERFILE了"
|
||||||
-c "cat Dockerfile"
|
|
||||||
-c "echo 这是一个测试信息"
|
- uses: docker://docker:git
|
||||||
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1 .'
|
with:
|
||||||
-c "echo 已经构建完了"
|
entrypoint: "/bin/sh"
|
||||||
-c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}'
|
args: |
|
||||||
-c "echo 登录仓库"
|
-c "cat Dockerfile"
|
||||||
-c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1'
|
-c "echo 这是一个测试信息"
|
||||||
-c "echo 成功了"
|
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1 .'
|
||||||
|
-c "echo 已经构建完了"
|
||||||
|
-c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}'
|
||||||
|
-c "echo 登录仓库"
|
||||||
|
-c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1'
|
||||||
|
-c "echo 成功了"
|
Loading…
Reference in New Issue
Block a user