Update Mvc.Web: multi-type deployments, Chat Interactions admin, rest… #857
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow runs before the Copilot coding agent's firewall is enabled. | ||
| # It restores NuGet packages from external sources that would otherwise be blocked. | ||
| # See: https://docs.github.com/en/copilot/customizing-copilot/customizing-the-development-environment-for-copilot-coding-agent | ||
| name: Copilot Setup Steps | ||
| on: copilot_setup | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| copilot-setup-steps: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Setup .NET SDK | ||
| uses: actions/setup-dotnet@v5 | ||
| with: | ||
| dotnet-version: | | ||
| 10.0.x | ||
| - name: Restore NuGet packages | ||
| run: dotnet restore | ||