ci/web: clarify Rust binary build-step label

Step was labeled "Build authentik worker (Rust)" but the binary is
literally named `authentik` (matching lifecycle/ak's PATH probe) and
backs both `ak worker` and `ak allinone`. Renaming the label + adding
a comment so the naming isn't read as a typo.

Co-Authored-By: Agent (authentik-i21994-better-mobile-tangelo) <279763771+playpen-agent@users.noreply.github.com>
This commit is contained in:
Teffen Ellis
2026-05-14 02:32:07 +02:00
parent 736d52fa86
commit 1b93ddc00b
+5 -1
View File
@@ -82,7 +82,11 @@ jobs:
run: | # shell
go build -o ./bin/authentik-server ./cmd/server
sudo install -m 0755 ./bin/authentik-server /usr/local/bin/authentik-server
- name: Build authentik worker (Rust)
# The Rust binary is named `authentik` (not `authentik-worker`) to match
# `lifecycle/ak`, which probes `command -v authentik` and falls back to
# `cargo run --` if the prebuilt binary isn't on PATH. It serves both
# `ak worker` and `ak allinone`.
- name: Build authentik Rust binary (worker / allinone)
run: | # shell
cargo build --release --bin authentik
sudo install -m 0755 ./target/release/authentik /usr/local/bin/authentik