Skip to content

Releases: claydiffrient/repo-tasks

Release list

Release v0.1.0

Choose a tag to compare

@github-actions github-actions released this 11 Jan 07:35

Installation

Download the appropriate binary for your platform below.

macOS

# Intel Macs
curl -L https://github.com/claydiffrient/repo-tasks/releases/download/v0.1.0/repo-tasks-x86_64-apple-darwin.tar.gz | tar xz
sudo mv repo-tasks /usr/local/bin/

# Apple Silicon Macs
curl -L https://github.com/claydiffrient/repo-tasks/releases/download/v0.1.0/repo-tasks-aarch64-apple-darwin.tar.gz | tar xz
sudo mv repo-tasks /usr/local/bin/

Linux

# x86_64
curl -L https://github.com/claydiffrient/repo-tasks/releases/download/v0.1.0/repo-tasks-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv repo-tasks /usr/local/bin/

# ARM64
curl -L https://github.com/claydiffrient/repo-tasks/releases/download/v0.1.0/repo-tasks-aarch64-unknown-linux-gnu.tar.gz | tar xz
sudo mv repo-tasks /usr/local/bin/

Windows

Download repo-tasks-x86_64-pc-windows-msvc.zip and extract to a directory in your PATH.

Verifying Downloads

All release artifacts include SHA256 checksums for verification.

Download the checksums file:

curl -LO https://github.com/claydiffrient/repo-tasks/releases/download/v0.1.0/checksums.txt

Verify your download:

# macOS/Linux
shasum -a 256 -c checksums.txt --ignore-missing

# Windows (PowerShell)
$expected = (Get-Content checksums.txt | Select-String "repo-tasks-x86_64-pc-windows-msvc.zip").ToString().Split()[0]
$actual = (Get-FileHash repo-tasks-x86_64-pc-windows-msvc.zip -Algorithm SHA256).Hash.ToLower()
if ($expected -eq $actual) { Write-Host "✓ Checksum verified" } else { Write-Host "✗ Checksum mismatch" }

Individual checksum files are also available for each artifact (e.g., repo-tasks-x86_64-apple-darwin.tar.gz.sha256).