From 03f9ed7bc09ff024831a96b96e804c5e295a7a10 Mon Sep 17 00:00:00 2001 From: Rapiz Date: Tue, 15 Sep 2020 14:38:25 +0800 Subject: [PATCH] Add linux libraries in CI --- .github/workflows/cmake.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 7791f0e..bcb68f8 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -48,6 +48,16 @@ jobs: shell: bash # Execute the build. You can specify a specific target with "--target " 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 " + 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: