From a06e5f8d0eadc425923014dedec4235d76705571 Mon Sep 17 00:00:00 2001 From: Jonathan Young Date: Mon, 29 Nov 2021 19:07:39 +1000 Subject: [PATCH] Add artifact upload to github actions. --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dfd4ebd..cc799a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,11 @@ jobs: run: | cd build make config=release_x86_64 + - name: Archive artifact + uses: actions/upload-artifact@v2 + with: + name: renderer_bgfx_x86_64 + path: build/bin_x64/renderer_bgfx_x86_64.so Windows: runs-on: windows-latest @@ -45,3 +50,8 @@ jobs: run: | cd build make + - name: Archive artifact + uses: actions/upload-artifact@v2 + with: + name: renderer_bgfx_x86 + path: build\bin_x86\renderer_bgfx_x86.dll