Private
Public Access
1
0

Fix build-deb: copy .deb to workspace before upload (actions/upload-artifact requires non-relative paths)

This commit is contained in:
2026-04-12 19:19:04 +00:00
parent 3052a96a8c
commit bb1e59ab28

View File

@ -101,11 +101,13 @@ jobs:
apt-get install -y build-essential debhelper cargo rustc libsystemd-dev pkg-config
- name: Build Debian package
run: dpkg-buildpackage -us -uc -b
- name: Copy .deb to workspace
run: cp ../linux-patch-api_*.deb .
- name: Upload .deb artifact
uses: actions/upload-artifact@v4
with:
name: linux-patch-api-deb
path: ../linux-patch-api_*.deb
path: linux-patch-api_*.deb
retention-days: 30
- name: Upload to releases (on tag)
if: startsWith(github.ref, 'refs/tags/')