tuwunel/.github/workflows
June Strawberry 5e532593fa add autocopr action
Signed-off-by: June Strawberry <june@vern.cc>
2026-01-13 07:42:43 +00:00
..
autocopr.yml add autocopr action 2026-01-13 07:42:43 +00:00
bake.yml Fetch tags in CI builds to provide correct version string 2025-12-21 22:38:50 +00:00
lint.yml ci: Re-enable lychee. 2025-11-18 10:47:59 +00:00
main.yml ci: Use actions variable for dockerhub user rather than github.actor. 2026-01-01 02:55:54 +00:00
package.yml ci: Extract Nix artifacts. 2025-10-27 09:39:57 +00:00
publish.yml ci: Use actions variable for dockerhub user rather than github.actor. 2026-01-01 02:55:54 +00:00
README.md docker: Simplify build/install; dedup cargo commands; enable gc. 2025-06-04 03:44:21 +00:00
test.yml docker: Move complement logs into tests directory. 2025-11-18 19:29:21 +00:00

Overview

The release pipeline Main (main.yml) and its subroutines defined in the other yamls form a high-level description for the underlying self-hosted build system in /docker. In other words, this is a sort of terminal, a "thin-client" with a display and a keyboard for our docker mainframe. We minimize vendor-lockin and duplication with other services by limiting everything here to only what is essential for driving the docker builder.

Though we slightly relax the above by specifying details of the actual CI pipeline, the control-flow logic to go from some input event to some output or release here. This gives us better integration with github, like granular progress indications by breaking up operations as individual jobs and workflows within the pipeline. This means we'll have duplicate logic with other services, but only as it relates to high-level control flow.