Update v11 with the TestPrinters builder for compatibility with YoloD… #867
This file contains 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
name: Build | |
on: | |
push: | |
pull_request: | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: "1" | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .Net | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: "./global.json" | |
- run: ./fake build --target CI | |
env: | |
NUGET_TOKEN: ${{secrets.NUGET_RELEASE_KEY}} |