File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,24 +11,18 @@ body:
1111 attributes :
1212 label : What happened?
1313 description : Also tell us, what did you expect to happen?
14- validations :
15- required : true
1614
1715 - type : textarea
1816 id : steps-to-reproduce
1917 attributes :
2018 label : Steps To Reproduce
2119 description : Steps to reproduce the behavior
22- validations :
23- required : true
2420
2521 - type : input
2622 id : net-version
2723 attributes :
2824 label : .NET Version
2925 description : What version of .NET are you running? (9.0, 10.0, etc.)
30- validations :
31- required : false
3226
3327 - type : dropdown
3428 id : projects
4438 - TypeGuard.Blazor
4539 - TypeGuard.Avalonia
4640 - Other
47- validations :
48- required : true
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ body = """
99{% for group, commits in commits | group_by(attribute="group") %}
1010### {{ group | upper_first }}
1111{% for commit in commits %}
12- - {{ commit.message | upper_first }} @{{ commit.author.name }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/DoubledDoge/TypeGuard/commit/{{ commit.id }}))
12+ - {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/DoubledDoge/TypeGuard/commit/{{ commit.id }}))
1313{% endfor %}
1414{% endfor %}
1515
Original file line number Diff line number Diff line change 4747 with :
4848 dotnet-version : ${{ env.DOTNET_VERSION }}
4949
50- - name : Install MAUI workloads
50+ - name : Install workloads
5151 run : dotnet workload restore
5252
5353 - name : Cache NuGet packages
Original file line number Diff line number Diff line change 4747 contents : read
4848 steps :
4949 - name : Checkout repository
50- uses : actions/checkout@v4
50+ uses : actions/checkout@v6
5151 with :
5252 fetch-depth : 0
5353
9494 done
9595
9696 - name : Upload artifacts
97- uses : actions/upload-artifact@v4
97+ uses : actions/upload-artifact@v7
9898 with :
9999 name : nuget-packages-${{ github.sha }}
100100 path : ./artifacts/*.nupkg
@@ -112,6 +112,12 @@ jobs:
112112 with :
113113 fetch-depth : 0
114114
115+ - name : Download artifacts
116+ uses : actions/download-artifact@v8
117+ with :
118+ name : nuget-packages-${{ github.sha }}
119+ path : ./artifacts
120+
115121 - name : Generate changelog
116122 id : cliff
117123 uses : orhun/git-cliff-action@v4
@@ -129,6 +135,7 @@ jobs:
129135 body : ${{ steps.cliff.outputs.content }}
130136 draft : false
131137 prerelease : ${{ needs.validate-tag.outputs.is-prerelease == 'true' }}
138+ files : ./artifacts/*.nupkg
132139
133140 publish :
134141 name : Publish to NuGet
You can’t perform that action at this time.
0 commit comments