Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,16 @@ jobs:
make deb-build
mkdir -p $GITHUB_WORKSPACE/deb-packages
cp ../*.deb $GITHUB_WORKSPACE/deb-packages/
rm -f ../cryptpilot_*.deb # Remove the generated main package

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: deb-packages-${{ matrix.arch }}
if-no-files-found: error
path: ./deb-packages/*.deb
path: |
./deb-packages/cryptpilot-fde_*.deb
./deb-packages/cryptpilot-crypt_*.deb
./deb-packages/cryptpilot-verity_*.deb

test:
strategy:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ jobs:
if-no-files-found: error
path: |
/tmp/rpmbuild/SRPMS/cryptpilot-*.al8.src.rpm
/tmp/rpmbuild/RPMS/${{ matrix.arch }}/cryptpilot-*.al8.${{ matrix.arch }}.rpm
/tmp/rpmbuild/RPMS/${{ matrix.arch }}/cryptpilot-fde-*.al8.${{ matrix.arch }}.rpm
/tmp/rpmbuild/RPMS/${{ matrix.arch }}/cryptpilot-crypt-*.al8.${{ matrix.arch }}.rpm
/tmp/rpmbuild/RPMS/${{ matrix.arch }}/cryptpilot-verity-*.al8.${{ matrix.arch }}.rpm

test:
strategy:
Expand Down
Loading