Docker config for @recaptime.dev's Knot server on Hack Club Nest. knot.hackclub.community
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: set default option for build-type

Also sets build type to `merge_request` for build-mr jobs.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+3
+3
.gitlab-ci.yml
··· 11 11 build-type: 12 12 description: "The type of build to perform (e.g., 'production' for tagged releases, 'nightly' for nightly builds from the main branch and 'weekly' for weekly builds)." 13 13 options: ["production", "nightly", "weekly", "merge_request"] 14 + default: "production" 14 15 --- 15 16 default: 16 17 image: "${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/docker:27.4.1-cli" ··· 69 70 70 71 build-mr: 71 72 extends: .build-base 73 + variables: 74 + BUILD_TYPE: "merge_request" 72 75 rules: 73 76 - if: $CI_PIPELINE_SOURCE == "merge_request_event" 74 77 when: manual