Skip to content

Commit

Permalink
Refactor Snort package creation process and update GitHub Actions wor…
Browse files Browse the repository at this point in the history
…kflow
  • Loading branch information
bengo237 committed Aug 30, 2024
1 parent f2c24b8 commit 829b58b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/package-snort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
- name: Create ZIP archive of packages
run: |
cd /work/packages/$ARCH
zip snort3-packages-${{ matrix.arch }}.zip *.deb
if ls *.deb 1> /dev/null 2>&1; then
zip snort3-packages-${{ matrix.arch }}.zip *.deb
else
echo "No .deb files found to package"
exit 1
fi
- name: Upload packages as artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 829b58b

Please sign in to comment.