From da0d3be11c875ce97a952d49115f9107f1ea945c Mon Sep 17 00:00:00 2001 From: Mathieu Guindon Date: Sun, 27 Oct 2024 15:30:05 -0400 Subject: [PATCH] fix dotnet publish --- .github/workflows/dotnet-cd.yml | 2 +- .github/workflows/dotnet-ci.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet-cd.yml b/.github/workflows/dotnet-cd.yml index 2c74ca8..f9f49fa 100644 --- a/.github/workflows/dotnet-cd.yml +++ b/.github/workflows/dotnet-cd.yml @@ -27,7 +27,7 @@ jobs: run: dotnet build rubberduckvba.Server --configuration Release - name: dotnet publish - run: dotnet publish --target rubberduckvba.Server\rubberduckvba.Server.csproj --configuration Release --output ${{env.DOTNET_ROOT}}\pub + run: dotnet publish --target rubberduckvba.Server --configuration Release --output ${{env.DOTNET_ROOT}}\pub - name: Upload artifact for deployment job uses: actions/upload-artifact@v3 diff --git a/.github/workflows/dotnet-ci.yml b/.github/workflows/dotnet-ci.yml index 6507390..1571e2f 100644 --- a/.github/workflows/dotnet-ci.yml +++ b/.github/workflows/dotnet-ci.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0.x + # - name: Setup .NET + # uses: actions/setup-dotnet@v4 + # with: + # dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore - name: Build