diff --git a/.github/workflows/feedback_service.yml b/.github/workflows/feedback_service.yml index d3682a3..d6bfe78 100644 --- a/.github/workflows/feedback_service.yml +++ b/.github/workflows/feedback_service.yml @@ -25,7 +25,7 @@ jobs: - name: Build run: dotnet build src/PullRequestQuantifier.Feedback.Service/PullRequestQuantifier.Feedback.Service.csproj --configuration Release --no-restore - name: dotnet publish - run: dotnet publish src/PullRequestQuantifier.Feedback.Service/PullRequestQuantifier.Feedback.Service.csproj -c Release -o ${{env.DOTNET_ROOT}}/pullrequestquantifierfeedback + run: dotnet publish src/PullRequestQuantifier.Feedback.Service/PullRequestQuantifier.Feedback.Service.csproj -c Release -o "${{env.DOTNET_ROOT}}/pullrequestquantifierfeedback" - name: Deploy to Azure Web App uses: azure/webapps-deploy@v2 with: diff --git a/.github/workflows/github_client.yml b/.github/workflows/github_client.yml index b8a9809..485a993 100644 --- a/.github/workflows/github_client.yml +++ b/.github/workflows/github_client.yml @@ -25,7 +25,7 @@ jobs: - name: Build run: dotnet build src/Clients/PullRequestQuantifier.GitHub.Client/PullRequestQuantifier.GitHub.Client.csproj --configuration Release --no-restore - name: dotnet publish - run: dotnet publish src/Clients/PullRequestQuantifier.GitHub.Client/PullRequestQuantifier.GitHub.Client.csproj -c Release -o ${{env.DOTNET_ROOT}}/pullrequestquantifiergithubclient + run: dotnet publish src/Clients/PullRequestQuantifier.GitHub.Client/PullRequestQuantifier.GitHub.Client.csproj -c Release -o "${{env.DOTNET_ROOT}}/pullrequestquantifiergithubclient" - name: Deploy to Azure Web App if: github.ref == 'refs/heads/main' uses: azure/webapps-deploy@v2 diff --git a/.github/workflows/repository_service.yml b/.github/workflows/repository_service.yml index c1c4f3c..130eb05 100644 --- a/.github/workflows/repository_service.yml +++ b/.github/workflows/repository_service.yml @@ -25,7 +25,7 @@ jobs: - name: Build run: dotnet build src/PullRequestQuantifier.Repository.Service/PullRequestQuantifier.Repository.Service.csproj --configuration Release --no-restore - name: dotnet publish - run: dotnet publish src/PullRequestQuantifier.Repository.Service/PullRequestQuantifier.Repository.Service.csproj -c Release -o ${{env.DOTNET_ROOT}}/pullrequestquantifierreposervice + run: dotnet publish src/PullRequestQuantifier.Repository.Service/PullRequestQuantifier.Repository.Service.csproj -c Release -o "${{env.DOTNET_ROOT}}/pullrequestquantifierreposervice" - name: Deploy to Azure Web App uses: azure/webapps-deploy@v2 with: diff --git a/.github/workflows/vscode_client.yml b/.github/workflows/vscode_client.yml index d6ad4fd..186684b 100644 --- a/.github/workflows/vscode_client.yml +++ b/.github/workflows/vscode_client.yml @@ -26,12 +26,12 @@ jobs: - name: Build run: dotnet build src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --no-restore - - name: dotnet publish win10-x64 - run: dotnet publish src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --self-contained false -r win10-x64 + - name: dotnet publish win-x64 + run: dotnet publish src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --self-contained false -r win-x64 - name: dotnet publish linux-x64 run: dotnet publish src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --self-contained false -r linux-x64 - - name: dotnet publish osx-x64 - run: dotnet publish src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --self-contained false -r osx-x64 + - name: dotnet publish osx-64 + run: dotnet publish src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --self-contained false -r osx-64 - name: dotnet publish vsix run: dotnet publish src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj --configuration Release --self-contained false -p:PackageVsix=true - name: Upload release artifacts