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