From 2a891a36f5b77a940f66808b8d29b3aa47f80330 Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Thu, 2 Apr 2026 14:26:31 -0700 Subject: [PATCH] fix: copy .deb into workspace before upload-artifact upload-artifact does not allow relative paths outside the workspace. Copy the built .deb into the workspace first, matching the pattern used in installtest.yml. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7097d57..5a1bedd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,12 +99,14 @@ jobs: - name: Install Kolibri run: make install-kolibri - name: Build .deb package - run: make deb + run: | + make deb + cp ../kolibri-server_*.deb ./kolibri-server.deb - name: Upload .deb artifact uses: actions/upload-artifact@v7 with: name: kolibri-server-deb - path: ../kolibri-server_*.deb + path: kolibri-server.deb wait_for_source_published: needs: - check_version