update actions yaml
Some checks failed
dotnet-publish-nuget / Pack-And-Publish (push) Failing after 1m36s

This commit is contained in:
Mingor(100757) 2024-08-27 18:39:27 +08:00
parent c3832df623
commit e88c5d8567
2 changed files with 4 additions and 2 deletions

View File

@ -21,6 +21,8 @@ jobs:
run: dotnet build --configuration Release --no-restore -o dst run: dotnet build --configuration Release --no-restore -o dst
- name: Test - name: Test
run: dotnet test --no-restore --verbosity normal run: dotnet test --no-restore --verbosity normal
- name: List files in the repos
run: ls ${{ gitea.workspace }}
- name: Login to Aliyun Container Registry - name: Login to Aliyun Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:

View File

@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app WORKDIR /app
COPY dst . COPY dst/ .
EXPOSE 80 EXPOSE 8080
ENTRYPOINT ["dotnet", "dotnet-deploy-k8s.dll"] ENTRYPOINT ["dotnet", "dotnet-deploy-k8s.dll"]