v0.1.4
Immutable
release. Only release title and notes can be modified.
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, orbrew upgrade envokeif already installed. - Scoop (Windows):
scoop bucket add neirda24 https://github.com/Neirda24/scoop-bucket, thenscoop install envoke, orscoop update envokeif already installed. - Debian/Ubuntu: download the
.debfrom the Assets above andsudo dpkg -i envoke_*.deb. - Fedora/RHEL: download the
.rpmfrom the Assets above andsudo rpm -i envoke_*.rpm. - Manual download: grab the archive for your OS/arch from the Assets above, extract it, and put
envokeon yourPATH. Verify againstchecksums.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.comA 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.