From 29c4ef09bc797a8bf7a72bc793c3ad8e1c65e826 Mon Sep 17 00:00:00 2001 From: Simone Date: Sun, 17 May 2026 20:33:56 +0200 Subject: [PATCH] ci: ns7zip build uses --dist; collect dist/ ns7zip now supports --dist (commit 57133b7 on nsis-plugin-ns7zip): DLLs land in /dist/. Build with `python build_plugin.py --dist` and collect artifact-source 'dist'. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/build-ns7zip.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build-ns7zip.yml b/.gitea/workflows/build-ns7zip.yml index 8331213..695829e 100644 --- a/.gitea/workflows/build-ns7zip.yml +++ b/.gitea/workflows/build-ns7zip.yml @@ -28,11 +28,11 @@ jobs: - uses: https://gitea.emulab.it/Simone/local-ci-cd-system/.gitea/actions/local-ci-build@main with: # build_plugin.py auto-detects host/toolset and builds all - # configs by default; --final/--dist-dir do not exist (they were - # forwarded to the per-version script and rejected). Output DLLs - # are copied to /plugins/{x86-ansi,x86-unicode,amd64-unicode}. - build-command: 'python build_plugin.py' - artifact-source: 'plugins' + # configs by default; --dist forwards to the per-version script + # which copies the DLLs to /dist/ instead of the + # committed plugins/ dir. + build-command: 'python build_plugin.py --dist' + artifact-source: 'dist' submodules: 'true' guest-os: ${{ matrix.target == 'linux' && 'Linux' || 'Windows' }} # repo-url uses the host SSH alias `gitea-ci` (~/.ssh/config),