From 1b93ddc00b89e3aebac2d18087ae5340f074c8c9 Mon Sep 17 00:00:00 2001 From: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> Date: Thu, 14 May 2026 02:32:07 +0200 Subject: [PATCH] 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> --- .github/workflows/ci-web.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index 16f9d1f07c..58723aa21f 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -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