mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-14 06:02:36 +00:00
🛤️ ✨ ci: package deb without zst (#970)
Signed-off-by: Wei Zhang <kweizh@gmail.com>
This commit is contained in:
parent
dee06211ab
commit
d2538a698e
2 changed files with 20 additions and 1 deletions
14
.github/workflows/CICD.yml
vendored
14
.github/workflows/CICD.yml
vendored
|
@ -256,6 +256,18 @@ jobs:
|
|||
## cat "${DPKG_DIR}/DEBIAN/control"
|
||||
# build dpkg
|
||||
fakeroot dpkg-deb --build "${DPKG_DIR}" "${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.DPKG_NAME }}"
|
||||
# build a deb not using zst
|
||||
# check https://github.com/lsd-rs/lsd/issues/891
|
||||
ar x "${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.DPKG_NAME }}"
|
||||
# Uncompress zstd files an re-compress them using xz
|
||||
zstd -d < control.tar.zst | xz > control.tar.xz
|
||||
zstd -d < data.tar.zst | xz > data.tar.xz
|
||||
# Re-create the Debian package in /tmp/
|
||||
xz_deb="$(echo ${{ steps.vars.outputs.DPKG_NAME }} | sed 's/.deb/_xz.deb/g')"
|
||||
ar -m -c -a sdsd ${xz_deb} debian-binary control.tar.xz data.tar.xz
|
||||
mv ${xz_deb} ${{ steps.vars.outputs.STAGING }}/
|
||||
# Clean up
|
||||
rm debian-binary control.tar.xz data.tar.xz control.tar.zst data.tar.zst
|
||||
fi
|
||||
- name: Publish
|
||||
uses: softprops/action-gh-release@v1
|
||||
|
@ -263,7 +275,7 @@ jobs:
|
|||
with:
|
||||
files: |
|
||||
${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.PKG_NAME }}
|
||||
${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.DPKG_NAME }}
|
||||
${{ steps.vars.outputs.STAGING }}/*.deb
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
|
@ -430,6 +430,13 @@ alias lt='ls --tree'
|
|||
|
||||
## F.A.Q
|
||||
|
||||
### Uses unknown compression for member 'control.tar.zst' when using deb
|
||||
|
||||
Zst compression is supported starting from `Debian 12` and `Ubuntu 21.10`,
|
||||
Please use the `_xz.deb` released starting from `lsd v1.1.0`.
|
||||
|
||||
Please check https://github.com/lsd-rs/lsd/issues/891 for details or manual fixes.
|
||||
|
||||
### Custom Color Schemes for Windows
|
||||
For `lsd` currently, it reads a system environment variable called LS_COLORS. Please look at the marked solution in [this post](https://github.com/orgs/lsd-rs/discussions/958#discussioncomment-7659375), which contains a guide on how to set a color scheme.
|
||||
|
||||
|
|
Loading…
Reference in a new issue