Skip to content

Commit

Permalink
building website by action
Browse files Browse the repository at this point in the history
Signed-off-by: Surax98 <[email protected]>
  • Loading branch information
Surax98 committed Aug 2, 2024
1 parent d3815e4 commit 3cceb66
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/build_docusaurus.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Deploy Docusaurus Site

on:
push:
tags:
- "*" # Change this to your default branch
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Download artifact from the latest workflow run
uses: actions/download-artifact@v3
with:
name: openapi.json # Name of the artifact you want to download
path: ./openapi/openapi.json # Directory where the artifact will be downloaded

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Ensure this matches the Node.js version required by Docusaurus

- name: Install dependencies
run: npm install

- name: Build Docusaurus site
run: npm run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build # Ensure this matches the build output directory of Docusaurus
30 changes: 29 additions & 1 deletion .github/workflows/build_openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,32 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: openapi.json
path: ./docs/openapi/openapi.json
path: ./docs/openapi/openapi.json

- name: Checkout repository
uses: actions/checkout@v3

- name: Download artifact from the latest workflow run
uses: actions/download-artifact@v4
with:
name: openapi.json # Name of the artifact you want to download
path: ./openapi/openapi.json # Directory where the artifact will be downloaded

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Ensure this matches the Node.js version required by Docusaurus

- name: Install dependencies
working-directory: ./docs # Change to the directory where package.json is located
run: npm install

- name: Build Docusaurus site
working-directory: ./docs # Change to the directory where package.json is located
run: npm run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build # Ensure this matches the build output directory of Docusaurus

0 comments on commit 3cceb66

Please sign in to comment.