...and again

This commit is contained in:
Tabby Cromarty
2025-11-07 17:11:10 +00:00
parent 10f676bbc5
commit de208b4747
2 changed files with 4 additions and 3 deletions

View File

@@ -318,7 +318,7 @@ jobs:
uses: ./.github/actions/build-plugin
with:
target: x86_64
config: ${{ matrix.acceleration == 'amd' && 'Release' || needs.check-event.outputs.config }}
config: ${{ needs.check-event.outputs.config }}
acceleration: ${{ matrix.acceleration }}
- name: Package Plugin 📀
@@ -326,7 +326,8 @@ jobs:
with:
package: ${{ fromJSON(needs.check-event.outputs.package) }}
target: x86_64
config: ${{ matrix.acceleration == 'amd' && 'Release' || needs.check-event.outputs.config }}
config: ${{ needs.check-event.outputs.config }}
acceleration: ${{ matrix.acceleration }}
- name: Upload Source Tarball 🗜️
uses: actions/upload-artifact@v4

View File

@@ -22,7 +22,7 @@ set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "${PLUGIN_EMAIL}")
set(CPACK_SET_DESTDIR ON)
if((CMAKE_VERSION VERSION_GREATER_EQUAL 3.25.0 OR NOT CMAKE_CROSSCOMPILING) AND NOT (ACCELERATION STREQUAL amd))
if((CMAKE_VERSION VERSION_GREATER_EQUAL 3.25.0 OR NOT CMAKE_CROSSCOMPILING) AND NOT ($ENV{ACCELERATION} STREQUAL amd))
set(CPACK_DEBIAN_DEBUGINFO_PACKAGE ON)
endif()