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