From 84838e978462d15b64d66a5bd3519e2e906eee9a Mon Sep 17 00:00:00 2001 From: Sam Byass Date: Mon, 7 Sep 2020 01:19:58 +0100 Subject: [PATCH] Build and upload libcpp2il --- .github/workflows/dotnet-core.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index d484bcfd..78348c3d 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -17,6 +17,9 @@ jobs: dotnet-version: 3.1.101 - name: Install dependencies run: dotnet restore + - name: Build - Common Lib + run: dotnet publish --configuration Release --no-restore + working-directory: ./LibCpp2IL/ - name: Build - Windows x64 working-directory: ./Cpp2IL/ run: dotnet publish --configuration Release --no-restore -r win-x64 /p:PublishSingleFile=true @@ -26,6 +29,11 @@ jobs: - name: Build - OSX x64 working-directory: ./Cpp2IL/ run: dotnet publish --configuration Release --no-restore -r osx-x64 /p:PublishSingleFile=true + - name: Upload Common Lib Files + uses: actions/upload-artifact@v2 + with: + name: LibCpp2IL + path: ./LibCpp2IL/bin/Release/netstandard2.1/publish/LibCpp2IL* - name: Upload Win x64 Artifact uses: actions/upload-artifact@v2 with: