From a5803d85544e8affc31b5f3e65cbc5ddebb34572 Mon Sep 17 00:00:00 2001 From: Abc Dr Date: Mon, 31 Jul 2023 19:57:03 +0800 Subject: [PATCH] cmakefile --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f8214f..d4de420 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,4 +72,4 @@ jobs: uses: actions/upload-artifact@v3.1.0 with: name: asexthook.so - path: ${{env.SOLUTION_FILE_PATH}}/build/libasexthook.so \ No newline at end of file + path: ${{env.SOLUTION_FILE_PATH}}/Release/libasexthook.so \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1684e2e..0a83d58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,12 +73,12 @@ jobs: - name: Build working-directory: ${{env.SOLUTION_FILE_PATH}} - run: mkdir build && cd build && cmake .. && make && mv libasexthook.so asexthook.so + run: mkdir build && cd build && cmake .. && make && mv ../Release/libasexthook.so ../Release/asexthook.so - name: Zipping All uses: vimtor/action-zip@v1 with: - files: ${{env.SOLUTION_FILE_PATH}}/build/asexthook.so + files: ${{env.SOLUTION_FILE_PATH}}/Release/asexthook.so dest: asexthook-ubuntu-i386.zip - name: Create Release