blacklinksetups

blacklinksetups.github.io

Release feed for Anoneurx Blacklink — hosted install bundles, no UI.

Served via GitHub Pages with CNAME blacklink.anoneurx.com.

Cut a release

Build the agent (cargo build --release), then pack and sign from the connect repo:

# sign with the release private key (a copy lives on the release machine;
# the public half below is what clients verify against)
openssl pkeyutl -sign -inkey release-sign.key \
  -in anoneurx-connect-linux-x86_64.tar.gz \
  -out anoneurx-connect-linux-x86_64.tar.gz.sig

Upload new releases/<tag>/ files, bump LATEST, push main, and Pages serves the new bundle.

Verify

openssl pkeyutl -verify -pubin -inkey pubkey.pem \
  -in anoneurx-connect-linux-x86_64.tar.gz \
  -sigfile anoneurx-connect-linux-x86_64.tar.gz.sig