File tree 6 files changed +18
-16
lines changed
Chickensoft.GodotNodeInterfacesGenerator
6 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 14
14
# You can disable this action by setting the DISABLE_AUTO_RELEASE repository
15
15
# variable to true.
16
16
17
- name : ' 🦾 Auto-Release'
17
+ name : " 🦾 Auto-Release"
18
18
on :
19
19
workflow_run :
20
20
workflows : ["🚥 Tests"]
33
33
- name : 🧾 Checkout
34
34
uses : actions/checkout@v4
35
35
with :
36
- # Use your GitHub Personal Access Token variable here.
37
- token : ${{ secrets.GH_BASIC }}
38
36
lfs : true
39
- submodules : ' recursive'
37
+ submodules : " recursive"
40
38
41
39
- name : 🧑🔬 Check Test Results
42
40
id : tests
71
69
fi
72
70
73
71
trigger_release :
74
- uses : ' ./.github/workflows/release.yaml'
72
+ uses : " ./.github/workflows/release.yaml"
75
73
needs : auto_release
76
74
if : needs.auto_release.outputs.should_release == 'true'
77
75
secrets :
Original file line number Diff line number Diff line change 1
- name : ' 📦 Release'
1
+ name : " 📦 Release"
2
2
on :
3
3
# Make a release whenever the developer wants.
4
4
workflow_dispatch :
26
26
default : " patch"
27
27
jobs :
28
28
release :
29
- name : ' 📦 Release'
29
+ name : " 📦 Release"
30
30
runs-on : ubuntu-latest
31
31
env :
32
32
DOTNET_CLI_TELEMETRY_OPTOUT : true
35
35
- name : 🧾 Checkout
36
36
uses : actions/checkout@v4
37
37
with :
38
- token : ${{ secrets.GH_BASIC }}
39
38
lfs : true
40
- submodules : ' recursive'
39
+ submodules : " recursive"
41
40
fetch-depth : 0 # So we can get all tags.
42
41
43
42
- name : 🔎 Read Current Project Version
Original file line number Diff line number Diff line change 28
28
- name : 🧾 Checkout
29
29
uses : actions/checkout@v4
30
30
with :
31
- token : ${{ secrets.GH_BASIC }}
32
31
lfs : true
33
- submodules : ' recursive'
32
+ submodules : " recursive"
34
33
35
34
- name : 💽 Setup .NET SDK
36
35
uses : actions/setup-dotnet@v4
Original file line number Diff line number Diff line change 18
18
<!-- Dependencies go here. -->
19
19
<PackageReference Include =" GodotSharp" Version =" 4.3.0" />
20
20
<PackageReference Include =" Microsoft.CodeAnalysis.Analyzers" Version =" 3.11.0" PrivateAssets =" all" />
21
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.12 .0" PrivateAssets =" all" />
21
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.11 .0" PrivateAssets =" all" />
22
22
<!-- Lets us get XML documentation easily. -->
23
23
<PackageReference Include =" Towel" Version =" 1.0.40" />
24
24
</ItemGroup >
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 9 .0.101 " ,
3
+ "version" : " 8 .0.404 " ,
4
4
"rollForward" : " latestMinor"
5
5
},
6
6
"msbuild-sdks" : {
7
7
"Godot.NET.Sdk" : " 4.3.0"
8
8
}
9
- }
9
+ }
Original file line number Diff line number Diff line change 19
19
"matchPackagePrefixes" : [
20
20
" dotnet-sdk"
21
21
],
22
- "allowedVersions" : " !/preview/"
22
+ "allowedVersions" : " <9"
23
+ },
24
+ {
25
+ "matchPackageNames" : [
26
+ " Microsoft.CodeAnalysis.CSharp"
27
+ ],
28
+ "allowedVersions" : " <4.12.0"
23
29
},
24
30
{
25
31
"matchPackagePrefixes" : [
35
41
"allowedVersions" : " /^(\\ d+\\ .\\ d+\\ .\\ d+)(-godot(\\ d+\\ .)+\\ d+(-.*)?)?$/"
36
42
}
37
43
]
38
- }
44
+ }
You can’t perform that action at this time.
0 commit comments