Update cmake.yml

This commit is contained in:
Alexander Klingenbeck 2023-05-23 18:04:18 +02:00 committed by GitHub
parent c8b1892307
commit 1b0b112339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

View File

@ -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