This commit is contained in:
xRain 2023-08-22 00:25:26 +08:00
parent 02683484fc
commit 50087853b8

View File

@ -4,9 +4,9 @@ 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: https://github.com/docker/login-action@v2.2.0 - uses: https://github.com/docker/login-action@v2.2.0
with: with:
@ -23,14 +23,14 @@ runs:
ls ls
cat Dockerfile cat Dockerfile
- uses: docker://docker:git - shell: sh
with: run: |
args: docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} . docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .
- uses: docker://docker:git - shell: sh
with: run: |
args: docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}} docker login ${{env.DOCKER_REGISTRY}} -u ${{env.DOCKER_USER}} -p ${{env.DOCKER_PASS}}
- uses: docker://docker:git - shell: sh
with: run: |
args: docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}