mirror of
https://gitlab.com/dword4/nhlapi
synced 2024-11-23 11:04:53 +00:00
18 lines
282 B
YAML
18 lines
282 B
YAML
image: node:latest
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- npm install -g redoc-cli
|
|
- redoc-cli build public/index.html swagger/openapi.yaml
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
pages:
|
|
cache:
|
|
paths:
|
|
- public/
|
|
script:
|
|
- echo "Deploying to Gitlab Pages"
|
|
|