Skip to content

Commit

Permalink
solve deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Jun 25, 2024
1 parent c3ebcd3 commit 365b6ec
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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: '18' # 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

0 comments on commit 365b6ec

Please sign in to comment.