Update the Github checkout/setup dotnet actions to v4 in the CI builds #818
Workflow file for this run
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 Pack | |
env: | |
NUGET_TOKEN: ${{secrets.NUGET_RELEASE_KEY}} |