Skip to content

Commit

Permalink
Add linux libraries in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapiz committed Sep 15, 2020
1 parent 4137d99 commit 03f9ed7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ jobs:
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE

- name: Copy Libraries (Linux)
if: runner.os == 'Linux'
working-directory: ${{runner.workspace}}/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: |
wget https://github.com/Rapiz1/DungeonRush/releases/download/v1.0-alpha/linux-lib.tar.gz
tar xzf linux-lib.tar.gz
mv linux-lib/* bin
- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 03f9ed7

Please sign in to comment.