diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index a280ae72c..5b96ca4ba 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -101,11 +101,12 @@ jobs: cd build mkdir package if [[ "${{ runner.os }}" == 'Windows' ]]; then - cp ${{ matrix.config.build_type }}/vkdoom.exe ${{ matrix.config.build_type }}/*.pk3 package + cp -r ${{ matrix.config.build_type }}/vkdoom.exe ${{ matrix.config.build_type }}/*.pk3 ${{ matrix.config.build_type }}/fm_banks ${{ matrix.config.build_type }}/soundfonts package + cp ../bin/licenses.zip ../bin/windows/libsndfile/64bit/libsndfile-1.dll ../bin/windows/openal/64bit/openal32.dll ../bin/windows/zmusic/64bit/zmusic.dll package elif [[ "${{ runner.os }}" == 'macOS' ]]; then cp -r vkdoom.app package elif [[ "${{ runner.os }}" == 'Linux' ]]; then - cp vkdoom *.pk3 package + cp vkdoom *.pk3 fm_banks soundfonts package strip package/vkdoom fi diff --git a/bin/licenses.zip b/bin/licenses.zip new file mode 100644 index 000000000..d1eaa9260 Binary files /dev/null and b/bin/licenses.zip differ diff --git a/bin/windows/libsndfile/64bit/libsndfile-1.dll b/bin/windows/libsndfile/64bit/libsndfile-1.dll new file mode 100644 index 000000000..14545e4d2 Binary files /dev/null and b/bin/windows/libsndfile/64bit/libsndfile-1.dll differ diff --git a/bin/windows/openal/64bit/openal32.dll b/bin/windows/openal/64bit/openal32.dll new file mode 100644 index 000000000..bafccf6ca Binary files /dev/null and b/bin/windows/openal/64bit/openal32.dll differ diff --git a/bin/windows/zmusic/64bit/zmusic.dll b/bin/windows/zmusic/64bit/zmusic.dll new file mode 100644 index 000000000..97c92dc06 Binary files /dev/null and b/bin/windows/zmusic/64bit/zmusic.dll differ