From 1b0b1123396352f8ef84a2c9e724a4428b4178e7 Mon Sep 17 00:00:00 2001 From: Alexander Klingenbeck Date: Tue, 23 May 2023 18:04:18 +0200 Subject: [PATCH] Update cmake.yml --- .github/workflows/cmake.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f18fe00..61b885b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -36,4 +36,21 @@ jobs: - name: Build # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Upload Artifacts + - uses: actions/upload-artifact@v3 + with: + name: rayjs + path: rayjs + + deploy: + needs: build + runs-on: ubuntu-latest + + steps: + - name: Download Build Artifacts + uses: actions/download-artifact@v3 + with: + name: rayjs + path: build