mirror of https://github.com/mode777/rayjs.git
Update cmake.yml
This commit is contained in:
parent
c8b1892307
commit
1b0b112339
|
@ -37,3 +37,20 @@ jobs:
|
|||
# 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
|
||||
|
||||
|
|
Loading…
Reference in New Issue