From dbdbae3682033ab144111b6c74d32d42a7b7fe73 Mon Sep 17 00:00:00 2001 From: Mohi Date: Wed, 7 Feb 2024 13:38:31 +0330 Subject: [PATCH] pipeline: add/github pages workflow - to the main "docs" version --- .github/workflows/deploy-docusaurus.yml | 30 +++++++++++++++++++++++++ docusaurus.config.js | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/deploy-docusaurus.yml diff --git a/.github/workflows/deploy-docusaurus.yml b/.github/workflows/deploy-docusaurus.yml new file mode 100644 index 0000000..82e6364 --- /dev/null +++ b/.github/workflows/deploy-docusaurus.yml @@ -0,0 +1,30 @@ +name: Deploy Docusaurus to GitHub Pages + +on: + push: + branches: + - develop + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + persist-credentials: false + + - name: Use Node.js + uses: actions/setup-node@v2 + with: + node-version: '18' + + - name: Install and Build + run: | + npm install + npm run build + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./build diff --git a/docusaurus.config.js b/docusaurus.config.js index 83bf97a..bd5d9c1 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -13,7 +13,7 @@ const config = { favicon: 'img/favicon.ico', // Set the production url of your site here - url: 'https://www.nimbora.io/', + url: 'https://docs.nimbora.io/', // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' baseUrl: '/',