ci: update site domain to js.waku.org

Resolves: https://github.com/waku-org/js-waku/issues/943

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-09 17:58:16 +02:00 committed by fryorcraken.eth
parent 70547db2be
commit fa43c0ce05
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
4 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ A JavaScript implementation of the [Waku v2 protocol](https://rfc.vac.dev/spec/1
- [Quick start](https://docs.wakuconnect.dev/docs/quick_start/)
- [Full documentation](https://docs.wakuconnect.dev/)
- [API documentation (`master` branch)](https://js-waku.wakuconnect.dev/)
- [API documentation (`master` branch)](https://js.waku.org/)
- [Waku Connect](https://wakuconnect.dev/)
- [Waku](https://wakunetwork.com/)
- [Vac](https://vac.dev/)

View File

@ -5,7 +5,7 @@ Configuration of CI builds executed under a Jenkins instance at https://ci.statu
# Website
The `Jenkinsfile.gh-pages` file builds the documentation site with this job:
https://ci.status.im/job/website/job/js-waku.wakuconnect.dev/
https://ci.status.im/job/website/job/js.waku.org/
And deploys it via `gh-pages` branch and [GitHub Pages](https://pages.github.com/) to:
https://js-waku.wakuconnect.dev/
https://js.waku.org/

View File

@ -9,7 +9,7 @@ const Args = process.argv.slice(2)
const USE_HTTPS = Args[0] && Args[0].toUpperCase() === 'HTTPS'
const branch = 'gh-pages'
const org = 'status-im'
const org = 'waku-org'
const repo = 'js-waku'
/* use SSH auth by default */
let repoUrl = USE_HTTPS

View File

@ -77,7 +77,7 @@
"watch:test": "mocha --watch",
"doc": "run-s doc:*",
"doc:html": "typedoc --treatWarningsAsErrors",
"doc:cname": "echo 'js-waku.wakuconnect.dev' > build/docs/CNAME",
"doc:cname": "echo 'js.waku.org' > build/docs/CNAME",
"prepublish": "npm run build",
"deploy": "node ci/deploy.js",
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"