Skip to content

v0.3.0 - Attestation Verification

Choose a tag to compare

@cloudcwfranck cloudcwfranck released this 22 Dec 23:00
· 83 commits to main since this release
d1ab9c0

Release 0.3.0

See CHANGELOG.md for details.

Installation

Download the appropriate binary for your platform and verify the checksum:

Linux (AMD64):

curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.3.0/acc_0.3.0_linux_amd64.tar.gz"
curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.3.0/checksums.txt"
sha256sum -c checksums.txt --ignore-missing
tar -xzf acc_0.3.0_linux_amd64.tar.gz
sudo mv acc-linux-amd64 /usr/local/bin/acc
chmod +x /usr/local/bin/acc
acc version

macOS (Apple Silicon):

curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.3.0/acc_0.3.0_darwin_arm64.tar.gz"
curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.3.0/checksums.txt"
shasum -a 256 -c checksums.txt --ignore-missing
tar -xzf acc_0.3.0_darwin_arm64.tar.gz
sudo mv acc-darwin-arm64 /usr/local/bin/acc
chmod +x /usr/local/bin/acc
acc version

See README.md for complete installation instructions.