dotnet2docker/action.yml

27 lines
1.2 KiB
YAML
Raw Normal View History

2023-08-21 14:21:54 +00:00
# action.yml
name: 'build docker image and push to code'
description: 'build docker image and push to simcu code'
runs:
using: 'composite'
steps:
2023-08-21 16:25:26 +00:00
- uses: docker://mcr.microsoft.com/dotnet/sdk:7.0
with:
args: dotnet publish -r linux-x64 -c Release --self-contained -o dist -p:AssemblyName=App
2023-08-22 04:54:13 +00:00
- uses: docker://docker:git
2023-08-22 04:26:31 +00:00
with:
2023-08-22 04:54:13 +00:00
entrypoint: "/bin/sh"
2023-08-22 04:32:31 +00:00
args: |
2023-08-22 04:26:31 +00:00
-c 'echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile'
-c 'echo "COPY dist /home" >> Dockerfile'
-c 'echo "WORKDIR /home" >> Dockerfile'
-c 'echo "ENTRYPOINT [\"./App\"]" >> Dockerfile'
2023-08-22 04:47:33 +00:00
-c "echo 已经构建完DOCKERFILE了"
-c "cat Dockerfile"
-c "echo 这是一个测试信息"
2023-08-22 04:32:31 +00:00
-c 'docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1 .'
2023-08-22 04:47:33 +00:00
-c "echo 已经构建完了"
2023-08-22 04:26:31 +00:00
-c 'docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}'
2023-08-22 04:47:33 +00:00
-c "echo 登录仓库"
-c 'docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}-1'
-c "echo 成功了"