ci: test installing .deb in build (#651)
Add an additional validation step to the .deb file generation in nightly and deployment workflows.
This commit is contained in:
parent
456efdc242
commit
1481fe4282
|
@ -344,6 +344,9 @@ jobs:
|
|||
cargo deb --no-build
|
||||
cp ./target/debian/bottom_*.deb ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
||||
|
||||
- name: Test Debian release
|
||||
run: sudo dpkg -i ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
||||
|
||||
- name: Create release directory for artifact, move file
|
||||
shell: bash
|
||||
run: |
|
||||
|
|
|
@ -331,6 +331,9 @@ jobs:
|
|||
cargo deb --no-build
|
||||
cp ./target/debian/bottom_*.deb ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
||||
|
||||
- name: Test Debian release
|
||||
run: sudo dpkg -i ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
||||
|
||||
- name: Create release directory for artifact, move file
|
||||
shell: bash
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue