diff options
| author | Leifa <26681464+TrickyLeifa@users.noreply.github.com> | 2024-06-24 14:22:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-24 14:22:43 +0200 |
| commit | a259d9e8cc4ed6d8de23c70faa2c06e8adeb27d7 (patch) | |
| tree | 2eecf5fdf17c7e8fef5035b6c89b8f54823bfd2f /.github | |
| parent | accbc17f51959427458edb2ed5335a202e74b18b (diff) | |
Relocate plugin final destination path
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f78c05d..1e9adf22 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,13 +45,6 @@ jobs: - name: Configure MSVC (Windows) uses: ilammy/msvc-dev-cmd@v1 - - name: Set reusable strings - # Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file. - id: strings - shell: bash - run: | - echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" - - name: Install Windows Discord RPC shell: bash run: | @@ -91,7 +84,7 @@ jobs: - name: Build Apng plugin run: | cd ./qtapng - cmake . -D CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE="${{ github.workspace }}/lib" + cmake . -D CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE="${{ github.workspace }}/bin/imageformats/" cmake --build . --config Release - name: Build @@ -159,13 +152,6 @@ jobs: cp ./bass/libs/x86_64/libbassopus.so ./lib/ cp ./bass/libs/x86_64/libbassopus.so ./bin/ - - name: Set reusable strings - # Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file. - id: strings - shell: bash - run: | - echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" - - name: Clone Apng plugin uses: actions/checkout@master with: @@ -175,7 +161,7 @@ jobs: - name: Build Apng plugin run: | cd ./qtapng - cmake . -D CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE="${{ github.workspace }}/lib" + cmake . -D CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE="${{ github.workspace }}/bin/imageformats/" cmake --build . --config Release - name: Build |
