test ci
This commit is contained in:
parent
80dfeb3387
commit
b015c533b0
10
action.yml
10
action.yml
@ -8,20 +8,12 @@ runs:
|
|||||||
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
|
|
||||||
with:
|
|
||||||
registry: ${{env.DOCKER_REGISTRY}}
|
|
||||||
username: ${{env.DOCKER_USER}}
|
|
||||||
password: ${{env.DOCKER_PASS}}
|
|
||||||
|
|
||||||
- shell: sh
|
- shell: sh
|
||||||
run: |
|
run: |
|
||||||
echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile
|
echo "FROM mcr.microsoft.com/dotnet/runtime:7.0" > Dockerfile
|
||||||
echo "COPY dist /home" >> Dockerfile
|
echo "COPY dist /home" >> Dockerfile
|
||||||
echo "WORKDIR /home" >> Dockerfile
|
echo "WORKDIR /home" >> Dockerfile
|
||||||
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile
|
echo "ENTRYPOINT [\"./App\"]" >> Dockerfile
|
||||||
ls
|
|
||||||
cat Dockerfile
|
|
||||||
docker build -t ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }} .
|
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 login ${{env.DOCKER_REGISTRY}} -u ${{github.actor}} -p ${{github.token}}
|
||||||
docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}
|
docker push ${{env.DOCKER_REGISTRY}}/${{github.repository}}:${{ github.ref_name }}
|
Loading…
Reference in New Issue
Block a user