dotnet2docker/action.yml

37 lines
1.3 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:19:20 +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-21 14:21:54 +00:00
- uses: https://github.com/docker/login-action@v2.2.0
with:
registry: ${{env.DOCKER_REGISTRY}}
username: ${{env.DOCKER_USER}}
password: ${{env.DOCKER_PASS}}
2023-08-21 16:19:20 +00:00
- shell: sh
run: |
2023-08-21 15:12:09 +00:00
echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile
echo "COPY dist /home" >> Dockerfile
echo "WORKDIR /home" >> Dockerfile
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile
2023-08-21 16:19:20 +00:00
ls
cat Dockerfile
2023-08-21 14:21:54 +00:00
2023-08-21 16:19:20 +00:00
- uses: docker://docker:git
2023-08-21 14:21:54 +00:00
with:
args: docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .
2023-08-21 14:55:16 +00:00
2023-08-21 16:19:20 +00:00
- uses: docker://docker:git
2023-08-21 14:55:16 +00:00
with:
args: docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}
2023-08-21 14:21:54 +00:00
2023-08-21 16:19:20 +00:00
- uses: docker://docker:git
2023-08-21 14:21:54 +00:00
with:
args: docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}