Skip to content

Commit

Permalink
fix: Use Node.js 18
Browse files Browse the repository at this point in the history
  • Loading branch information
kkrypt0nn committed Nov 10, 2024
1 parent a01d464 commit 4a8e4d9
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/deploy_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@master
- name: Deploy Docusaurus documentation
uses: redkubes/[email protected]
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
source-folder: documentation
git-user: kkrypt0nn
git-password: ${{ secrets.PAT }}
deployment-branch: gh-pages
node-version: 18
- name: Install dependencies
run: npm install
- name: Build documentation
run: npm run build
- name: Deploy to GitHub pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.PAT }}
publish_dir: ./documentation/gitbuild

0 comments on commit 4a8e4d9

Please sign in to comment.