From 8a6805698817ebd98062308d95d2f4962ef77828 Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Mon, 20 Jan 2025 20:03:25 +0200 Subject: [PATCH] update --- gitlab/pipelines.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gitlab/pipelines.md b/gitlab/pipelines.md index 702d5a23..e48b995d 100644 --- a/gitlab/pipelines.md +++ b/gitlab/pipelines.md @@ -152,6 +152,8 @@ job-name: * [Manual interaction](https://docs.gitlab.com/ee/ci/pipelines/#add-manual-interaction-to-your-pipeline) +* Select the `gear` icon, type in the variable: `name` and a value. Then let it run. + ![](examples/pipelines/manual-interaction/.gitlab-ci.yml) ![](img/manual-interaction.png) @@ -159,8 +161,29 @@ job-name: ## Manual approval {id: manual-approval} +* Click on the `gear` as variable type in `CODE` and as value type in `secret`. + ![](examples/pipelines/manual-approval/.gitlab-ci.yml) +To generate such a secret hash use the following command on linux: + +``` +echo "'$(echo -n secret | sha256sum)'" +``` + +## Pick a Windows and MacOS runner +{id: pick-a-runner-windows-macos} + + +## Use Postgres service +{id: use-postgres-service} + +[Postgres service on GitLab](https://docs.gitlab.com/ee/ci/services/postgres.html) + + +## Use MongoDB service +{id: use-mongodb-service} + ## Script {id: script}