diff options
author | stuebinm | 2021-12-23 20:39:21 +0000 |
---|---|---|
committer | stuebinm | 2021-12-23 20:39:21 +0000 |
commit | 89289de8887e6b796ab9f26cdb64b441b140296b (patch) | |
tree | 218c30b14c0e85ff53934b74fb1c59dd108f01ea /.gitlab-ci.yml | |
parent | 9f9d5834092d7b3ae74e30227a17d06904caf994 (diff) | |
parent | c7edfd18a146817c319ba7686b8bc8b5fea371f8 (diff) |
Merge branch 'chore/mapservice_pipeline_trigger' into 'main'
chore: add trigger for pipeline on main
See merge request hub/walint!2
Diffstat (limited to '')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a74364b..076f4ea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: haskell:8.10.7 stages: - build + - trigger build-job: only: @@ -16,3 +17,13 @@ build-job: artifacts: paths: - dist + +trigger-mapservice-pipeline: + only: + refs: + - main + stage: trigger + script: + - curl -X POST -F token=$MAPSERVICE_TOKEN -F ref=main https://git.cccv.de/api/v4/projects/252/trigger/pipeline + + |