Skip to content

changed node-version #2

changed node-version

changed node-version #2

Workflow file for this run

name: Deploy GitHub Pages
#
on:
push:
branches:
- main # Or the branch you want to deploy from
#
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # Specify the Node.js version
- name: Install dependencies
run: npm install
- name: Build the site
run: npx mintlify build # Adjust this command based on how Mintlify builds your site
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist # Adjust based on your build output directory