Skip to content

Commit

Permalink
Fix build not working due to deprecated upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
SamboyCoding authored Oct 12, 2024
1 parent 4daa40a commit 122bef3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,42 +41,42 @@ jobs:
dotnet build
dotnet test -v=n --no-build
- name: Upload Common Lib Files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: LibCpp2IL
path: ./LibCpp2IL/bin/Release/netstandard2.0/publish/LibCpp2IL*
- name: Upload Win x64 Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Cpp2IL-Windows
path: ./Cpp2IL/bin/Release/net6.0/win-x64/publish/Cpp2IL.exe
- name: Upload Netframework Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Cpp2IL-Netframework472-Windows
path: ./Cpp2IL/bin/Release/net472/win-x64/publish/
- name: Upload Ubuntu x64 Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Cpp2IL-Linux
path: ./Cpp2IL/bin/Release/net6.0/ubuntu-x64/publish/Cpp2IL
- name: Upload OSX x64 Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Cpp2IL-Mac
path: ./Cpp2IL/bin/Release/net6.0/osx-x64/publish/Cpp2IL
- name: Upload LibCpp2IL nuget package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: LibCpp2IL.nupkg
path: ./LibCpp2IL/bin/Release/Samboy063.LibCpp2IL*.nupkg
- name: Upload Cpp2IL.Core nuget package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Cpp2IL.Core.nupkg
path: ./Cpp2IL.Core/bin/Release/Samboy063.Cpp2IL.Core*.nupkg
- name: Upload WasmDisassembler nuget package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: WasmDisassembler.nupkg
path: ./WasmDisassembler/bin/Release/Samboy063.WasmDisassembler*.nupkg

0 comments on commit 122bef3

Please sign in to comment.