We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4226be6 commit a0cc8fcCopy full SHA for a0cc8fc
.github/workflows/BitMono.CLI.yaml
@@ -34,9 +34,19 @@ jobs:
34
steps:
35
- name: Checkout code
36
uses: actions/checkout@v4
37
+ with:
38
+ fetch-depth: 0
39
40
- name: Setup .NET
41
uses: actions/setup-dotnet@v4
42
+ env:
43
+ # Disable the .NET logo in the console output.
44
+ DOTNET_NOLOGO: true
45
+ # Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
46
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
47
+ # Disable sending .NET CLI telemetry to Microsoft.
48
+ DOTNET_CLI_TELEMETRY_OPTOUT: true
49
+ DOTNET_INSTALL_DIR: ${{ github.workspace }}/.dotnet
50
with:
51
dotnet-version: 9.x
52
0 commit comments