/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/copilot-setup-steps.yml
45 строк
1 KB
dependabot[bot]
[main] (deps): Bump actions/setup-dotnet from 5 to 6 (#67883)
17 июл 2026, 20:48
Не верифицирован
17 июл 2026, 20:48
574547f
Код
Авторство
О чём код?
name: "Copilot Setup Steps" # Allow testing of the setup steps from your repository's "Actions" tab. on: workflow_dispatch jobs: # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot. copilot-setup-steps: runs-on: ${{ github.repository_owner == 'dotnet' && '8-core-ubuntu-latest' || 'ubuntu-latest' }} permissions: contents: read # You can define any steps you want, and they will run before the agent starts. # If you do not check out your code, Copilot will do this for you. steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: submodules: 'true' # Include PrepareForHelix to maximise what is downloaded here - name: Build solution env: # prevent GitInfo errors CI: false run: ./restore.sh # For MCP servers like nuget's - name: Install .NET 10.x uses: actions/setup-dotnet@v6 with: dotnet-version: | 10.x dotnet-quality: preview # for MCP servers - name: Install .NET 8.x uses: actions/setup-dotnet@v6 with: dotnet-version: | 8.x # Diagnostics in the log - name: dotnet --info run: dotnet --info