diff options
author | mdhtr <850865-mdhtr@users.noreply.gitlab.com> | 2019-09-02 11:02:06 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-09-02 11:02:06 +0000 |
commit | 6b0d8948ab539dc289fb4f9bf1d6a559718e16fc (patch) | |
tree | a99518c39d76b7b78845408d2ae6c85ced31d250 | |
parent | 937b2027041e6d1f2aad1b62af107c0768f4a6f2 (diff) | |
download | gitlab-ce-6b0d8948ab539dc289fb4f9bf1d6a559718e16fc.tar.gz |
Remove reference of external example
as requested by the reviewer
-rw-r--r-- | changelogs/unreleased/swagger-ui-ci-page-template.yml | 5 | ||||
-rw-r--r-- | lib/gitlab/ci/templates/Pages/SwaggerUI.gitlab-ci.yml | 29 |
2 files changed, 34 insertions, 0 deletions
diff --git a/changelogs/unreleased/swagger-ui-ci-page-template.yml b/changelogs/unreleased/swagger-ui-ci-page-template.yml new file mode 100644 index 00000000000..6d17baf82c8 --- /dev/null +++ b/changelogs/unreleased/swagger-ui-ci-page-template.yml @@ -0,0 +1,5 @@ +--- +title: "Add SwaggerUI Pages template for .gitlab-ci.yml" +merge_request: 31183 +author: mdhtr +type: added diff --git a/lib/gitlab/ci/templates/Pages/SwaggerUI.gitlab-ci.yml b/lib/gitlab/ci/templates/Pages/SwaggerUI.gitlab-ci.yml new file mode 100644 index 00000000000..8fd08ea7995 --- /dev/null +++ b/lib/gitlab/ci/templates/Pages/SwaggerUI.gitlab-ci.yml @@ -0,0 +1,29 @@ +image: node:10-alpine + +# specify the location of the Open API Specification files within your project +# and the filename of the specification that you would like to display by default +variables: + DOCS_FOLDER: "api-docs" + SPEC_TO_DISPLAY: "my-project_specification_0.0.1.json" + +# These folders are cached between builds +cache: + paths: + - ./node_modules + +# publishes all files from the $DOCS_FOLDER together with the static version of SwaggerUI +# sets the specification file named in $SPEC_TO_DISPLAY to be displayed by default +pages: + stage: deploy + before_script: + - npm install swagger-ui-dist@3.22.1 + script: + - mkdir public + - cp -rp node_modules/swagger-ui-dist/* public + - cp -rp $DOCS_FOLDER/* public + - sed -i "s#https://petstore\.swagger\.io/v2/swagger\.json#$SPEC_TO_DISPLAY#g" public/index.html + artifacts: + paths: + - public + only: + - master |