Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Store binaries uncompressed in artifacts (more convenient) #82

Merged
merged 2 commits into from
Apr 6, 2025
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
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ jobs:
set -x
make deploy-binary
cp target/chdig chdig-macos-x86_64
gzip --keep chdig-macos-x86_64

- name: Check package
run: |
Expand All @@ -154,7 +153,7 @@ jobs:
with:
name: macos-packages-x86_64
path: |
chdig-macos-x86_64.gz
chdig-macos-x86_64

build-macos-arm64:
name: Build MacOS (arm64)
Expand Down Expand Up @@ -190,7 +189,6 @@ jobs:
set -x
make deploy-binary
cp target/chdig chdig-macos-arm64
gzip --keep chdig-macos-arm64

- name: Check package
run: |
Expand All @@ -202,7 +200,7 @@ jobs:
with:
name: macos-packages-arm64
path: |
chdig-macos-arm64.gz
chdig-macos-arm64

build-windows:
name: Build Windows
Expand Down Expand Up @@ -231,15 +229,14 @@ jobs:
- name: Build
run: |
make deploy-binary
cp target/chdig.exe chdig-windows.exe
Compress-Archive -Path chdig-windows.exe -DestinationPath chdig-windows-x86_64.exe.zip
cp target/chdig.exe chdig-windows-x86_64.exe

- name: Archive Packages
uses: actions/upload-artifact@v4
with:
name: windows-packages-x86_64
path: |
chdig-windows-x86_64.exe.zip
chdig-windows-x86_64.exe

build-linux-aarch64:
name: Build Linux (aarch64)
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ Dig into [ClickHouse](https://github.com/ClickHouse/ClickHouse/) with TUI interf

There are pre-built packages for the latest available version:

- [chdig standalone binary](https://github.com/azat/chdig/releases/download/latest/chdig)
- [debian](https://github.com/azat/chdig/releases/download/latest/chdig-latest_amd64.deb)
- [fedora](https://github.com/azat/chdig/releases/download/latest/chdig-latest.x86_64.rpm)
- [archlinux](https://github.com/azat/chdig/releases/download/latest/chdig-latest-x86_64.pkg.tar.zst)
- [tar.gz](https://github.com/azat/chdig/releases/download/latest/chdig-latest-x86_64.tar.gz)
- [macos x86_64](https://github.com/azat/chdig/releases/download/latest/chdig-macos-x86_64.gz)
- [macos arm64](https://github.com/azat/chdig/releases/download/latest/chdig-macos-arm64.gz)
- [windows](https://github.com/azat/chdig/releases/download/latest/chdig-windows.exe.zip)

### Standalone binaries

- [linux amd64](https://github.com/azat/chdig/releases/download/latest/chdig-amd64)
- [linux aarch64](https://github.com/azat/chdig/releases/download/latest/chdig-aarch64)
- [macos x86_64](https://github.com/azat/chdig/releases/download/latest/chdig-macos-x86_64)
- [macos arm64](https://github.com/azat/chdig/releases/download/latest/chdig-macos-arm64)
- [windows](https://github.com/azat/chdig/releases/download/latest/chdig-windows.exe)

<details>

Expand Down
Loading