diff --git a/.github/workflows/debian-build.yml b/.github/workflows/debian-build.yml index 2288eccb..dc8f312f 100644 --- a/.github/workflows/debian-build.yml +++ b/.github/workflows/debian-build.yml @@ -35,11 +35,14 @@ jobs: set -eux dpkg-buildpackage -us -uc -b + - name: Collect Debian artifacts + run: | + set -eux + mkdir -p artifacts + cp -v ../*.deb ../*.changes ../*.buildinfo artifacts/ + - name: Upload Debian artifacts uses: actions/upload-artifact@v4 with: name: zoitechat-debian-packages - path: | - ../*.deb - ../*.changes - ../*.buildinfo + path: artifacts/*