diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2022-12-03 08:29:07 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2022-12-03 08:29:07 +0300 |
commit | 28fc81255a6d5f35b3464e1361cb5051010b6118 (patch) | |
tree | fd66cb56b1d1ac3a02ff2a2e1910f1e17cfc19fa | |
parent | a0872dcd9dd0fbbf07ccb7754cab723efe7261a4 (diff) | |
download | sciteco-28fc81255a6d5f35b3464e1361cb5051010b6118.tar.gz |
nightly builds Win32 Gtk
* make sure that all DLLs are packaged into the root directory even
those for the pixbuf loaders
-rw-r--r-- | .github/workflows/nightly.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 428825a..39865ed 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -308,9 +308,9 @@ jobs: cp /mingw32/lib/gdk-pixbuf-2.0/2.10.0/loaders/{libpixbufloader-svg.dll,libpixbufloader-png.dll} \ lib/gdk-pixbuf-2.0/2.10.0/loaders/ cp ../win32/loaders.cache lib/gdk-pixbuf-2.0/2.10.0/ - # Collect DLLs for all pixbuf loaders + # Collect DLLs for all pixbuf loaders into the root directory for f in lib/gdk-pixbuf-2.0/2.10.0/loaders/*.dll; do - ../contrib/mingw-bundledlls --copy $f + cp `../contrib/mingw-bundledlls $f` . done zip -9 -r ../sciteco-gtk3_nightly_win32.zip . - name: Archive Windows Distribution (GTK+ 3) |