Skip to content

Commit

Permalink
ci: Added website build config [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
khaled-0 authored Jan 9, 2025
1 parent 493bdef commit 1d8224e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,23 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'

- name: Build
run: |
cd docs
npm i
npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './dist'

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit 1d8224e

Please sign in to comment.