Fix build-deb: copy .deb to workspace before upload (actions/upload-artifact requires non-relative paths)
Some checks failed
CI/CD Pipeline / Code Format (push) Successful in 11s
CI/CD Pipeline / Clippy Lints (push) Successful in 10m28s
CI/CD Pipeline / Unit Tests (push) Successful in 11m3s
CI/CD Pipeline / Security Audit (push) Successful in 1m33s
CI/CD Pipeline / Build Debian Package (push) Failing after 2m3s
CI/CD Pipeline / Build RPM Package (push) Failing after 14s
CI/CD Pipeline / Build Alpine Package (push) Failing after 1s
CI/CD Pipeline / Build Arch Package (push) Failing after 1s
CI/CD Pipeline / Create Release (push) Has been skipped
Some checks failed
CI/CD Pipeline / Code Format (push) Successful in 11s
CI/CD Pipeline / Clippy Lints (push) Successful in 10m28s
CI/CD Pipeline / Unit Tests (push) Successful in 11m3s
CI/CD Pipeline / Security Audit (push) Successful in 1m33s
CI/CD Pipeline / Build Debian Package (push) Failing after 2m3s
CI/CD Pipeline / Build RPM Package (push) Failing after 14s
CI/CD Pipeline / Build Alpine Package (push) Failing after 1s
CI/CD Pipeline / Build Arch Package (push) Failing after 1s
CI/CD Pipeline / Create Release (push) Has been skipped
This commit is contained in:
Binary file not shown.
@ -1 +1 @@
|
|||||||
d1200f9c47d86596e4a42a0e314f22794bb37e141ab019632215db2a469685b6
|
c2a292d7913ab63077b072cdabe7bccf0f64dbf3824975001b58539db4f3bf5d
|
||||||
Binary file not shown.
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -101,11 +101,13 @@ jobs:
|
|||||||
apt-get install -y build-essential debhelper cargo rustc libsystemd-dev pkg-config
|
apt-get install -y build-essential debhelper cargo rustc libsystemd-dev pkg-config
|
||||||
- name: Build Debian package
|
- name: Build Debian package
|
||||||
run: dpkg-buildpackage -us -uc -b
|
run: dpkg-buildpackage -us -uc -b
|
||||||
|
- name: Copy .deb to workspace
|
||||||
|
run: cp ../linux-patch-api_*.deb .
|
||||||
- name: Upload .deb artifact
|
- name: Upload .deb artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: linux-patch-api-deb
|
name: linux-patch-api-deb
|
||||||
path: ../linux-patch-api_*.deb
|
path: linux-patch-api_*.deb
|
||||||
retention-days: 30
|
retention-days: 30
|
||||||
- name: Upload to releases (on tag)
|
- name: Upload to releases (on tag)
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
|||||||
Reference in New Issue
Block a user