logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 5ee9cbf0174a39378d33feab25776daf9154ce6b
parent e2d7c4fd570cf3d4af649bc4a98c927b38088bc2
Author: rinpatch <rinpatch@sdf.org>
Date:   Wed,  3 Feb 2021 14:03:24 +0000

Merge branch 'fix/deploy-api-docs' into 'develop'

CI: Add job ref when calling api docs builder

See merge request pleroma/pleroma!3297

Diffstat:

M.gitlab-ci.yml5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -165,13 +165,16 @@ review_app: spec-deploy: stage: deploy + artifacts: + paths: + - spec.json only: - develop@pleroma/pleroma image: alpine:latest before_script: - apk add curl script: - - curl -X POST -F"token=$API_DOCS_PIPELINE_TRIGGER" -F'ref=master' -F"variables[BRANCH]=$CI_COMMIT_REF_NAME" https://git.pleroma.social/api/v4/projects/1130/trigger/pipeline + - curl -X POST -F"token=$API_DOCS_PIPELINE_TRIGGER" -F'ref=master' -F"variables[BRANCH]=$CI_COMMIT_REF_NAME" -F"variables[JOB_REF]=CI_JOB_ID" https://git.pleroma.social/api/v4/projects/1130/trigger/pipeline stop_review_app: