From dee6d30230fd491048f37cfff61b741907bb1df1 Mon Sep 17 00:00:00 2001 From: Marcus Minhorst Date: Mon, 25 Aug 2025 22:53:09 -0400 Subject: [PATCH] Package zmusic --- .github/workflows/continuous_integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index c3f3f799e..61c0676aa 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -98,14 +98,14 @@ jobs: cd build mkdir package if [[ "${{ runner.os }}" == 'Windows' ]]; then - cp ${{ matrix.config.build_type }}/gzdoom.exe ${{ matrix.config.build_type }}/*.pk3 package + cp ${{ matrix.config.build_type }}/gzdoom.exe ${{ matrix.config.build_type }}/*.pk3 ${{ matrix.config.build_type }}/zmusic.dll package elif [[ "${{ runner.os }}" == 'macOS' ]]; then if [[ "${{ matrix.config.build_type }}" != 'Release' ]]; then mv ${{ matrix.config.build_type }}/gzdoom.app gzdoom.app fi cp -r gzdoom.app package elif [[ "${{ runner.os }}" == 'Linux' ]]; then - cp gzdoom *.pk3 package + cp gzdoom *.pk3 libzmusic.so* package fi - name: Upload Package