From e1702ba6fcce68a9e48ab9ea3d951b54cd8c2d7b Mon Sep 17 00:00:00 2001 From: TheWover <17090738+TheWover@users.noreply.github.com> Date: Mon, 26 Oct 2020 10:42:13 -0500 Subject: [PATCH] Workflow step for adding AnyCPU Release build as artifact --- .github/workflows/DInvoke.NetFramework.CI.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/DInvoke.NetFramework.CI.yml b/.github/workflows/DInvoke.NetFramework.CI.yml index 3222456..03d1829 100644 --- a/.github/workflows/DInvoke.NetFramework.CI.yml +++ b/.github/workflows/DInvoke.NetFramework.CI.yml @@ -15,4 +15,9 @@ jobs: - name: Setup MSBuild.exe uses: warrenbuckley/Setup-MSBuild@v1 - name: Build with MSBuild - run: msbuild DInvoke\DInvoke.sln -p:Configuration=Release \ No newline at end of file + run: msbuild DInvoke\DInvoke.sln -p:Configuration=Release + - name: Archive artifacts + uses: actions/upload-artifact@v2 + with: + name: DInvoke AnyCPU Release + path: DInvoke\DInvoke\bin\Release\DInvoke.dll \ No newline at end of file