Releases: fvrrvg/wordy
Releases · fvrrvg/wordy
Release list
v0.1.0
Installation
To install wordy, download one of the pre-built binaries provided for your platform from the artifacts attached to this release.
For instance, if you are using Linux on an AMD64 architecture:
# Download the binary
curl -LO https://github.com/fvrrvg/wordy/releases/download/v0.1.0/wordy-v0.1.0.linux.amd64.tar.gz
# Extract the tar
tar -xzf wordy-v0.1.0.linux.amd64.tar.gz
# Move the binary in to your PATH
mv wordy-v0.1.0.linux.amd64 /usr/local/bin/wordy
# Make the binary executable
chmod +x /usr/local/bin/wordyVerify checksums file signature
# Download the checksums file, certificate and signature
curl -LO https://github.com/fvrrvg/wordy/releases/download/v0.1.0/wordy-v0.1.0.checksums.txt
# Verify the checksums file
cosign verify-blob wordy-v0.1.0.checksums.txt \
--certificate-identity-regexp=https://github.com/fvrrvg \
--certificate-oidc-issuer=https://token.actions.githubusercontent.comVerify binary integrity
To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature:
# Verify the binary using the checksums file
sha256sum -c wordy-v0.1.0.checksums.txt --ignore-missingFull Changelog: https://github.com/fvrrvg/wordy/commits/v0.1.0