19 lines
873 B
YAML
19 lines
873 B
YAML
# action.yml
|
|
name: 'build docker image and push to code'
|
|
description: 'build docker image and push to simcu code'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- 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
|
|
|
|
- shell: sh
|
|
run: |
|
|
echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile
|
|
echo "COPY dist /home" >> Dockerfile
|
|
echo "WORKDIR /home" >> Dockerfile
|
|
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile
|
|
docker build -t ${{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 }} |