File tree Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -133,4 +133,4 @@ jobs:
133133 with :
134134 target : Build
135135 env :
136- OCELOT_COVERALLS_TOKEN : ${{ secrets.OCELOT_COVERALLS_TOKEN }}
136+ COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
Original file line number Diff line number Diff line change 7878 with :
7979 target : PullRequest
8080 env :
81- OCELOT_COVERALLS_TOKEN : ${{ secrets.OCELOT_COVERALLS_TOKEN }}
81+ COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
Original file line number Diff line number Diff line change @@ -140,10 +140,6 @@ jobs:
140140 uses : actions/setup-dotnet@v3
141141 with :
142142 dotnet-version : 8.0.x
143- # - name: Setup .NET
144- # uses: actions/setup-dotnet@v3
145- # with:
146- # dotnet-version: 8.0.x, 9.0.x
147143 - name : Check .NET 9
148144 id : check-dotnet9
149145 run : |
@@ -176,4 +172,4 @@ jobs:
176172 TEMP_KEY : ${{ secrets.TEMP_KEY }}
177173 OCELOT_GITHUB_API_KEY : ${{ secrets.OCELOT_GITHUB_API_KEY }}
178174 OCELOT_NUGET_API_KEY_2025 : ${{ secrets.OCELOT_NUGET_API_KEY_2025 }}
179- OCELOT_COVERALLS_TOKEN : ${{ secrets.OCELOT_COVERALLS_TOKEN }}
175+ COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
Original file line number Diff line number Diff line change @@ -520,10 +520,10 @@ Task("UnitTests")
520520 Information ( "#=============================" ) ;
521521 if ( IsRunningInCICD ( ) && IsMainOrDevelop ( ) )
522522 {
523- var repoToken = EnvironmentVariable ( "OCELOT_COVERALLS_TOKEN " ) ;
523+ var repoToken = EnvironmentVariable ( "COVERALLS_REPO_TOKEN " ) ;
524524 if ( string . IsNullOrEmpty ( repoToken ) )
525525 {
526- var err = "# Coveralls repo token was not found! Set environment variable: OCELOT_COVERALLS_TOKEN !" ;
526+ var err = "# Coveralls repo token was not found! Set environment variable: COVERALLS_REPO_TOKEN !" ;
527527 Warning ( err ) ;
528528 throw new Exception ( err ) ;
529529 }
You can’t perform that action at this time.
0 commit comments