Skip to content

Commit fa061b4

Browse files
committed
Build official client
1 parent ceb922d commit fa061b4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
sudo apt-get install nasm:i386
2828
2929
- name: CMake Configure
30-
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=i686-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++
30+
run: |
31+
eval `ssh-agent -s`
32+
ssh-add - <<< '${{ secrets.CLIENT_AUTH_DEPLOY_KEY }}'
33+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=i686-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++ -DOFFICIAL_BUILD=ON
3134
3235
- name: Build
3336
run: cmake --build build --parallel

0 commit comments

Comments
 (0)