Skip to content

v0.1.4

Choose a tag to compare

@github-actions github-actions released this 16 Jul 21:08
Immutable release. Only release title and notes can be modified.
d7cf292

Changelog

  • d7cf292 Add Scoop bucket and .deb/.rpm (nfpm) packaging (#8)
  • fb2fdf8 Add root .gitattributes to normalize line endings to LF (#7)
  • 9952c38 Add issue/PR/discussion templates, breaking-change policy, and YAML lint (#6)

Install / upgrade

  • Homebrew (macOS/Linux): brew install neirda24/tap/envoke, or brew upgrade envoke if already installed.
  • Scoop (Windows): scoop bucket add neirda24 https://github.com/Neirda24/scoop-bucket, then scoop install envoke, or scoop update envoke if already installed.
  • Debian/Ubuntu: download the .deb from the Assets above and sudo dpkg -i envoke_*.deb.
  • Fedora/RHEL: download the .rpm from the Assets above and sudo rpm -i envoke_*.rpm.
  • Manual download: grab the archive for your OS/arch from the Assets above, extract it, and put envoke on your PATH. Verify against checksums.txt.
  • Go toolchain: go install github.com/Neirda24/envoke/cmd/envoke@v0.1.4

Verifying releases

checksums.txt is signed keylessly with cosign via GitHub Actions OIDC (Sigstore/Fulcio) — no long-lived signing key exists. checksums.txt.sigstore.json (in Assets above) bundles the signature, signing certificate, and Rekor transparency-log entry. Verify with:

cosign verify-blob checksums.txt \
  --bundle checksums.txt.sigstore.json \
  --certificate-identity-regexp "^https://github\.com/Neirda24/envoke/\.github/workflows/release\.yml@.*$" \
  --certificate-oidc-issuer https://token.actions.githubusercontent.com

A successful verification proves checksums.txt (and, transitively, every archive it hashes) was built and signed by this repository's own release.yml workflow, not tampered with in transit.