Skip to content

Commit

Permalink
Fix deploy github pages
Browse files Browse the repository at this point in the history
Signed-off-by: David VIEJO <[email protected]>
  • Loading branch information
dviejokfs committed Oct 29, 2024
1 parent c144c5f commit 713dd65
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ on:

jobs:
deploy:
name: Deploy to GitHub Pages
name: Deploy to GitHub Page
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'

- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
Expand All @@ -28,12 +33,12 @@ jobs:
- name: Install dependencies
run: |
cd website-docs
bun install
yarn install --frozen-lockfile
- name: Build Docusaurus website
run: |
cd website-docs
bun run build
yarn run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit 713dd65

Please sign in to comment.