File tree Expand file tree Collapse file tree 5 files changed +18
-3
lines changed
Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 3232 cache-dependency-path : src/Plugins/**/packages.lock.json
3333
3434 - name : Run the Cake script
35- uses : cake-build/cake-action@v3
35+ uses : cake-build/cake-action@v1
3636 with :
3737 verbosity : Diagnostic
3838 script-path : ./build-plugin.cake
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
2727 - name : Setup .NET
2828 uses : actions/setup-dotnet@v4
2929 with :
30- dotnet-version : 9.x
30+ global-json-file : " ./src/global.json "
3131 cache : true
3232 cache-dependency-path : src/**/packages.lock.json
3333
3434 - name : Run the Cake script
35- uses : cake-build/cake-action@v3
35+ uses : cake-build/cake-action@v1
3636 with :
3737 verbosity : Diagnostic
3838 script-path : ./build.cake
Original file line number Diff line number Diff line change 1+ #addin "nuget:?package=SharpZipLib&Version=1.3.3"
2+ #addin "nuget:?package=Cake.Compression&Version=0.3.0"
3+ #addin "nuget:?package=Cake.FileHelpers&Version=5.0.0"
4+
15var workflow = BuildSystem . GitHubActions . Environment . Workflow ;
26var buildId = workflow . RunNumber ;
37var tag = workflow . RefType == GitHubActionsRefType . Tag ? workflow . RefName : null ;
Original file line number Diff line number Diff line change 1+ #addin "nuget:?package=SharpZipLib&Version=1.3.3"
2+ #addin "nuget:?package=Cake.Compression&Version=0.3.0"
3+ #addin "nuget:?package=Cake.FileHelpers&Version=5.0.0"
4+
15var workflow = BuildSystem . GitHubActions . Environment . Workflow ;
26var buildId = workflow . RunNumber ;
37var tag = workflow . RefType == GitHubActionsRefType . Tag ? workflow . RefName : null ;
Original file line number Diff line number Diff line change 1+ {
2+ "sdk" : {
3+ "version" : " 9.0.0" ,
4+ "rollForward" : " latestMajor" ,
5+ "allowPrerelease" : true
6+ }
7+ }
You can’t perform that action at this time.
0 commit comments