We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20f1736 commit b88eaecCopy full SHA for b88eaec
1 file changed
.github/workflows/build.yml
@@ -16,7 +16,10 @@ jobs:
16
- name: Setup .NET
17
uses: actions/setup-dotnet@v4
18
with:
19
- dotnet-version: '7.0.x'
+ dotnet-version: '7.0.x'
20
+ env:
21
+ DOTNET_NOLOGO: true
22
+ DOTNET_CLI_TELEMETRY_OPTOUT: true
23
24
- name: Restore dependencies
25
run: dotnet restore FastGithub.sln
@@ -58,12 +61,10 @@ jobs:
58
61
59
62
- name: Publish single-file artifacts with UI
60
63
shell: bash
- env:
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
64
- DOTNET_NOLOGO: 1
65
- DOTNET_CLI_UI_LANGUAGE: en
66
- DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
67
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
68
run: |
69
# 发布主程序
70
dotnet publish FastGithub/FastGithub.csproj \
0 commit comments