Skip to content

Commit

Permalink
build-debian: Show binaries contents and info after building
Browse files Browse the repository at this point in the history
It can provide some quick information about what's in the packages
  • Loading branch information
3v1n0 committed Feb 26, 2024
1 parent 255c19b commit 811901e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gh-actions/common/build-debian/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,14 @@ runs:
mv -v ../*"_${{ env.PKG_VERSION }}_"*.deb "${{ env.BUILD_OUTPUT_DIR }}"
echo "::group::Show binaries information"
for i in "${{ env.BUILD_OUTPUT_DIR }}"/*.deb; do
echo "$(basename "$i")"
dpkg --info "$i"
dpkg --contents "$i"
done
echo "::endgroup::"
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 811901e

Please sign in to comment.