@@ -416,46 +416,31 @@ jobs:
416416 - name : Create / update GitHub Release
417417 uses : softprops/action-gh-release@v2
418418 with :
419- name : ' NemoClaw Tip ("Nightly") '
419+ name : NemoClaw Latest Snapshot
420420 prerelease : true
421421 tag_name : tip
422422 target_commitish : ${{ github.sha }}
423423 body : |
424- This tip release is automatically built on every commit to main that passes CI.
424+ This snapshot is automatically built on every commit to main that passes CI.
425425
426- > **Warning**: This is a nightly build, not a tagged release.
426+ > **Warning**: This is a snapshot build, not a tagged release.
427427 > We recommend using tagged releases for production use.
428428
429- ### Assets
430- | File | Description |
431- |------|-------------|
432- | `nemoclaw-x86_64-unknown-linux-musl.tar.gz` | Linux x86_64 (static binary) |
433- | `nemoclaw-aarch64-unknown-linux-musl.tar.gz` | Linux aarch64 / ARM64 (static binary) |
434- | `nemoclaw-aarch64-apple-darwin.tar.gz` | macOS Apple Silicon |
435- | `nemoclaw-checksums-sha256.txt` | SHA256 checksums for all archives |
436- | `install.sh` | Installer script (detects OS/arch automatically) |
437-
438429 ### Quick install
439430
440431 ```bash
441432 curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/install.sh | sh
442433 ```
443434
444- Or install a specific platform manually:
445-
446- ```bash
447- # Linux x86_64
448- curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/nemoclaw-x86_64-unknown-linux-musl.tar.gz | tar xz
449- sudo mv nemoclaw /usr/local/bin/
450-
451- # Linux aarch64
452- curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/nemoclaw-aarch64-unknown-linux-musl.tar.gz | tar xz
453- sudo mv nemoclaw /usr/local/bin/
435+ ### Assets
454436
455- # macOS (Apple Silicon)
456- curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/nemoclaw-aarch64-apple-darwin.tar.gz | tar xz
457- sudo mv nemoclaw /usr/local/bin/
458- ```
437+ | File | Platform | Install |
438+ |------|----------|---------|
439+ | `nemoclaw-x86_64-unknown-linux-musl.tar.gz` | Linux x86_64 | `curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/nemoclaw-x86_64-unknown-linux-musl.tar.gz \| tar xz && sudo mv nemoclaw /usr/local/bin/` |
440+ | `nemoclaw-aarch64-unknown-linux-musl.tar.gz` | Linux aarch64 / ARM64 | `curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/nemoclaw-aarch64-unknown-linux-musl.tar.gz \| tar xz && sudo mv nemoclaw /usr/local/bin/` |
441+ | `nemoclaw-aarch64-apple-darwin.tar.gz` | macOS Apple Silicon | `curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/nemoclaw-aarch64-apple-darwin.tar.gz \| tar xz && sudo mv nemoclaw /usr/local/bin/` |
442+ | `install.sh` | All platforms | `curl -fsSL https://github.com/NVIDIA/NemoClaw/releases/download/tip/install.sh \| sh` |
443+ | `nemoclaw-checksums-sha256.txt` | — | SHA256 checksums for all archives |
459444 files : |
460445 release/nemoclaw-x86_64-unknown-linux-musl.tar.gz
461446 release/nemoclaw-aarch64-unknown-linux-musl.tar.gz
0 commit comments