mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user