From 9a42b401fcdc84fade2dae009294e49d4d9cb5e7 Mon Sep 17 00:00:00 2001 From: Sergey Shorokhov Date: Sat, 17 Dec 2022 23:27:54 +0300 Subject: [PATCH] Revert "fix" This reverts commit d28e1057c44aefffeff8149aa89794c2941c3f72. --- .github/workflows/build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 799e7d39f..e8a640333 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -173,10 +173,6 @@ jobs: fi shell: bash - - name: Create publish directory - run: | - mkdir -p publish/bin/linux32/cstrike/dlls - - name: Build using Intel C++ Compiler 19.0 (only for release) if: | github.event_name == 'release' && @@ -184,12 +180,10 @@ jobs: startsWith(github.ref, 'refs/tags/') run: | rm -rf build-icc && CC=icc CXX=icpc cmake -B build-icc && cmake --build build-icc -j8 - mv build-icc/regamedll/cs.so publish/bin/linux32/cstrike/dlls/cs.so - name: Build using GCC Compiler 9.3 run: | rm -rf build-gcc && CC=gcc CXX=g++ cmake -B build-gcc && cmake --build build-gcc -j8 - mv build-gcc/regamedll/cs.so publish/cs-gcc.so - name: Prepare CSSDK run: | @@ -198,6 +192,9 @@ jobs: - name: Move files run: | + mkdir -p publish/bin/linux32/cstrike/dlls + mv build-icc/regamedll/cs.so publish/bin/linux32/cstrike/dlls/cs.so + mv build-gcc/regamedll/cs.so publish/cs-gcc.so mv regamedll/version/appversion.h publish/appversion.h mv dist/ publish/