We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19c428 commit b642885Copy full SHA for b642885
.circleci/config.yml
@@ -50,7 +50,7 @@ jobs:
50
paths: deriv_api
51
docs-deploy:
52
docker:
53
- - image: circleci/node:14.18.1-bullseye
+ - image: circleci/python:3.9.6
54
steps:
55
- add_ssh_keys:
56
fingerprints:
@@ -59,15 +59,14 @@ jobs:
59
- attach_workspace:
60
at: docs/html
61
- run:
62
- name: Install and configure dependencies
+ name: Setup git credentials
63
command: |
64
- npm install --silent gh-pages@2.0.1
65
git config --local user.email "sysadmin@binary.com"
66
git config --local user.name "Automated gh-pages deploy"
67
68
name: Deploy docs to gh-pages branch
69
70
- npx gh-pages --message "[skip ci] Updates" --dist docs/html/deriv_api
+ make gh-pages
71
72
workflows:
73
version: 2
0 commit comments