2222
2323 steps :
2424 - name : Checkout Code
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v6
2626 with :
2727 fetch-depth : 0
2828 submodules : ' recursive'
@@ -35,21 +35,21 @@ jobs:
3535 run : npm install -g auto-changelog
3636
3737 - name : Setup .NET Core
38- uses : actions/setup-dotnet@v3
38+ uses : actions/setup-dotnet@v5
3939 with :
4040 dotnet-version : ' 8.0.x'
4141
4242 - name : Publish 64-bit WPF application
4343 working-directory : ${{env.GITHUB_WORKSPACE}}
44- run : dotnet publish -p:PublishSingleFile=true -r win-x64 -c Release --self-contained false
44+ run : dotnet publish win-x64 -c Release
4545
4646 - name : CleanUp Misc Files (64-bit)
4747 working-directory : ${{github.workspace}}\bin\Release\net8.0-windows7.0\win-x64\publish
4848 run : del SAModManager.dll.config, SAModManager.pdb
4949
5050 - name : Publish 32-bit WPF application
5151 working-directory : ${{env.GITHUB_WORKSPACE}}
52- run : dotnet publish -p:PublishSingleFile=true - r win-x86 -c Release --self-contained false
52+ run : dotnet publish -r win-x86 -c Release
5353
5454 - name : CleanUp Misc Files (32-bit)
5555 working-directory : ${{github.workspace}}\bin\Release\net8.0-windows7.0\win-x86\publish
@@ -61,15 +61,15 @@ jobs:
6161 auto-changelog --sort-commits date --hide-credit --template changelog-template.hbs --commit-limit 30 --starting-version "$env:RELEASE_TAG" --output "$env:PUBLISH_CHANGELOG_PATH"
6262
6363 - name : Archive 64-bit
64- uses : thedoctor0/zip-release@0.7.5
64+ uses : thedoctor0/zip-release@0.7.6
6565 with :
6666 type : ' zip'
6767 filename : ' release_x64.zip'
6868 directory : bin/Release/net8.0-windows7.0/win-x64/publish
6969 exclusions : ' *.git* /*node_modules/* .editorconfig'
7070
7171 - name : Archive 32-bit
72- uses : thedoctor0/zip-release@0.7.5
72+ uses : thedoctor0/zip-release@0.7.6
7373 with :
7474 type : ' zip'
7575 filename : ' release_x86.zip'
7878
7979
8080 - name : Create Release
81- uses : softprops/action-gh-release@v0.1.15
81+ uses : softprops/action-gh-release@v2
8282 with :
8383 body_path : ${{ env.PUBLISH_CHANGELOG_PATH }}
8484 files : |
0 commit comments