4949
5050 - name : Build Docker Image
5151 run : |
52- docker build . --file Dockerfile --tag ${{ github.repository }}:continuous-clearing-v8.4.0
53- docker save ${{ github.repository }}:continuous-clearing-v8.4.0 -o continuous-clearing-v8.4.0 .tar
52+ docker build . --file Dockerfile --tag ${{ github.repository }}:continuous-clearing-v8.4.1
53+ docker save ${{ github.repository }}:continuous-clearing-v8.4.1 -o continuous-clearing-v8.4.1 .tar
5454
5555 - name : Upload Docker Image
5656 uses : actions/upload-artifact@v4
7474
7575 - name : Pack NuGet Package
7676 run : |
77- nuget pack CA.nuspec -Version 8.4.0
77+ nuget pack CA.nuspec -Version 8.4.1
7878
7979 - name : Upload NuGet Package
8080 uses : actions/upload-artifact@v4
@@ -114,25 +114,25 @@ jobs:
114114 env :
115115 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
116116 with :
117- tag_name : v8.4.0
118- release_name : Release v8.4.0
117+ tag_name : v8.4.1
118+ release_name : Release v8.4.1
119119 body : |
120120 ${{ github.event.head_commit.message }}
121121 draft : true
122122 prerelease : false
123123
124124 - name : Compress Full Build Output into ZIP
125125 run : |
126- powershell -Command "& {Compress-Archive -Path ${{ github.workspace }}/out/* -DestinationPath ${{ github.workspace }}/continuous-clearing-v8.4.0 .zip}"
126+ powershell -Command "& {Compress-Archive -Path ${{ github.workspace }}/out/* -DestinationPath ${{ github.workspace }}/continuous-clearing-v8.4.1 .zip}"
127127
128128 - name : Upload Full Build Output ZIP to Release
129129 uses : actions/upload-release-asset@v1
130130 env :
131131 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
132132 with :
133133 upload_url : ${{ steps.create_release.outputs.upload_url }}
134- asset_path : ${{ github.workspace }}/continuous-clearing-v8.4.0 .zip
135- asset_name : continuous-clearing-v8.4.0 .zip
134+ asset_path : ${{ github.workspace }}/continuous-clearing-v8.4.1 .zip
135+ asset_name : continuous-clearing-v8.4.1 .zip
136136 asset_content_type : application/zip
137137
138138 - name : Upload Docker Image(tar) to Release
@@ -141,8 +141,8 @@ jobs:
141141 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
142142 with :
143143 upload_url : ${{ steps.create_release.outputs.upload_url }}
144- asset_path : ./continuous-clearing-v8.4.0 .tar
145- asset_name : continuous-clearing-v8.4.0 .tar
144+ asset_path : ./continuous-clearing-v8.4.1 .tar
145+ asset_name : continuous-clearing-v8.4.1 .tar
146146 asset_content_type : application/x-tar
147147
148148 - name : Upload NuGet Package to Release
@@ -151,8 +151,8 @@ jobs:
151151 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
152152 with :
153153 upload_url : ${{ steps.create_release.outputs.upload_url }}
154- asset_path : ./continuous-clearing.8.4.0 .nupkg
155- asset_name : continuous-clearing.8.4.0 .nupkg
154+ asset_path : ./continuous-clearing.8.4.1 .nupkg
155+ asset_name : continuous-clearing.8.4.1 .nupkg
156156 asset_content_type : application/octet-stream
157157
158158 - name : Upload ReadmeOSS_nupkg file to Release
0 commit comments