Skip to content

Commit

Permalink
changed some lines in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yungDoom authored Nov 30, 2024
1 parent 16fa55e commit a0e5176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/kstrike-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
DEBIAN_FRONTEND: "noninteractive"
run: sudo apt update && sudo apt upgrade -y && sudo apt install -y git build-essential cmake libsdl2-mixer-dev libsdl2-dev libopenal-dev libcurlpp-dev libssl-dev libfontconfig1-dev libcurl4-openssl-dev net-tools wget unzip zip
- name: Building client...
run: mkdir build && cd build && cmake .. -DUSE_ROCKETUI=1 && make -j$(nproc --all) && cd ${{ env.GITHUB_WORKSPACE }}
run: cd cmake-build && cmake .. -DUSE_ROCKETUI=1 -DUSE_IPHYS_PHYSICS=1 && make -j$(nproc --all) && cd ${{ env.GITHUB_WORKSPACE }}
- name: Preparing additional files...
run: git clone https://github.com/P0L3NARUBA/Linux-Strike-Files && cp -r Linux-Strike-Files/* ../game
- name: Compressing assets...
run: cd .. && zip -9 -r game_client-x64-rocketui.zip game && rm -rf game && cd ${{ env.GITHUB_WORKSPACE }}
- name: Building dedicated...
run: cd build && cmake .. -DDEDICATED=1 && make -j$(nproc --all) && cd ${{ env.GITHUB_WORKSPACE }}
run: cd cmake-build && cmake .. -DDEDICATED=1 && make -j$(nproc --all) && cd ${{ env.GITHUB_WORKSPACE }}
- name: Compressing assets...
run: cd .. && zip -9 -r game_dedicated-x64.zip game && rm -rf game && cd ${{ env.GITHUB_WORKSPACE }}
- name: Create tag version
Expand Down

0 comments on commit a0e5176

Please sign in to comment.