Skip to content

Commit

Permalink
splitting actions
Browse files Browse the repository at this point in the history
Signed-off-by: Surax98 <[email protected]>
  • Loading branch information
Surax98 committed Aug 8, 2024
1 parent 147b59e commit a020d74
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 44 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build_docusaurus.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Update Docusaurus

on:
push:
branches:
- "*"
tags:
- "*"

jobs:
update-doc:
runs-on: ubuntu-latest

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

- name: Remove existing openapi.json
run: rm ./docs/openapi/openapi.json

- name: Download openapi.json
uses: robinraju/release-downloader@v1
with:
repository: '' # Specify the repository in the format 'owner/repo'
latest: true
preRelease: false
fileName: 'openapi.json'
out-file-path: 'docs/openapi'

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22' # 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
46 changes: 2 additions & 44 deletions .github/workflows/build_openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,54 +26,12 @@ jobs:
- name: Run script to generate OpenAPI JSON
run: python example/create_openapi.py

- name: Upload OpenAPI JSON as an artifact
uses: actions/upload-artifact@v4
with:
name: openapi.json
path: ./docs/openapi/openapi.json
- name: Upload json to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./docs/openapi/openapi.json
asset_name: openAPISpec
asset_name: openapi.json
tag: ${{ github.ref }}
overwrite: true
body: "OpenAPI spec for plugin REST"

update-doc:
needs: update-openapi
runs-on: ubuntu-latest

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

- name: Install dependencies
run: |
rm ./docs/openapi/openapi.json
- 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: ./docs/openapi # Directory where the artifact will be downloaded

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22' # 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
body: "OpenAPI spec for plugin REST"

0 comments on commit a020d74

Please sign in to comment.