Skip to content

Releases: fvrrvg/wordy

Release list

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 18 Sep 03:33

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/wordy

Verify 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.com

Verify 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-missing

Full Changelog: https://github.com/fvrrvg/wordy/commits/v0.1.0