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