Add binary download links to docs
Some checks failed
/ verify (push) Has been cancelled

This commit is contained in:
Juno Takano 2026-03-09 13:17:26 -03:00
commit 00fb91b96f
3 changed files with 20 additions and 2 deletions

View file

@ -191,6 +191,13 @@ push: verify
alias p := push
# Push tag 'latest'
[group: 'develop']
push-tag-latest-unsafe:
git push origin tag latest --force --no-verify
alias ptlu := push-tag-latest-unsafe
# Push without verifying
[group: 'develop']
push-unsafe:

View file

@ -46,7 +46,10 @@ impl TokenOutput {
pub fn parse(text: &str, graph: &Graph) -> String { parser::read(text, graph) }
pub fn rich_parse(text: &str, graph: &Graph) -> TokenOutput {
parser::rich_read(text, graph)
parser::rich_read(
&text.replace("{{ en_version }}", env!("CARGO_PKG_VERSION")),
graph,
)
}
#[cfg(test)]

View file

@ -8,7 +8,15 @@ text = """
The easiest way to get started is by downloading a pre-built binary.
x64 Linux binaries are available from the |git.jutty.dev package registry|https://git.jutty.dev/jutty/-/packages/generic/en|. Check the links under "Assets" for direct downloads.
x64 Linux binaries are available from the |git.jutty.dev package registry|https://git.jutty.dev/jutty/-/packages/generic/en|:
%
Platform ! Download
x64 Linux GNU | |en-x64-linux-gnu|https://git.jutty.dev/api/packages/jutty/generic/en/{{ en_version }}/en-x64-linux-gnu|
x64 Linux musl | |en-x64-linux-musl|https://git.jutty.dev/api/packages/jutty/generic/en/{{ en_version }}/en-x64-linux-musl|
%
If in doubt, it is likely your system uses the GNU libc. Regardless, the musl binary is statically compiled and should run on mostly any x64 Linux system.
Other platforms may be supported in the future depending on CI resources.