Relocate plugin final destination path

This commit is contained in:
Leifa 2024-06-24 14:22:43 +02:00 committed by GitHub
parent accbc17f51
commit a259d9e8cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,13 +45,6 @@ jobs:
- name: Configure MSVC (Windows) - name: Configure MSVC (Windows)
uses: ilammy/msvc-dev-cmd@v1 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 - name: Install Windows Discord RPC
shell: bash shell: bash
run: | run: |
@ -91,7 +84,7 @@ jobs:
- name: Build Apng plugin - name: Build Apng plugin
run: | run: |
cd ./qtapng 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 cmake --build . --config Release
- name: Build - name: Build
@ -159,13 +152,6 @@ jobs:
cp ./bass/libs/x86_64/libbassopus.so ./lib/ cp ./bass/libs/x86_64/libbassopus.so ./lib/
cp ./bass/libs/x86_64/libbassopus.so ./bin/ 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 - name: Clone Apng plugin
uses: actions/checkout@master uses: actions/checkout@master
with: with:
@ -175,7 +161,7 @@ jobs:
- name: Build Apng plugin - name: Build Apng plugin
run: | run: |
cd ./qtapng 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 cmake --build . --config Release
- name: Build - name: Build