From 32cf99b69988f9c4dcd8c19b4f7f6ce72d95d47a Mon Sep 17 00:00:00 2001 From: Meliox Date: Sun, 7 Jun 2026 14:05:28 +0200 Subject: [PATCH] fix failure caused by the artifact upload step using an invalid path pattern --- .github/workflows/test-release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index 2b08a8e..3500ba6 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -33,9 +33,14 @@ jobs: echo "=== Package contents ===" dpkg-deb --contents ../*.deb + - name: Collect deb artifacts + run: | + mkdir -p artifacts + cp ../*.deb artifacts/ + - name: Upload deb as artifact uses: actions/upload-artifact@v4 with: name: test-build-deb - path: "../*.deb" + path: artifacts/*.deb retention-days: 3 \ No newline at end of file