Skip to content

Commit

Permalink
Merge pull request #6 from harishmohanraj/fix-deploy-workflow
Browse files Browse the repository at this point in the history
Do not copy gitignore and other temp files to the docs directory
  • Loading branch information
harishmohanraj authored Dec 17, 2024
2 parents 8aab2ac + dcf4092 commit 6a3079b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-website-mintlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
# Create a temporary directory for filtered content
mkdir -p temp_website
# Copy all files except .ipynb and node_modules
find website -type f -not -path "*/node_modules/*" -not -name "*.ipynb" -exec cp --parents {} temp_website/ \;
# Copy files except .ipynb, node_modules, .quarto, and .gitignore
find website -type f -not -path "*/node_modules/*" -not -path "*/.quarto/*" -not -name "*.ipynb" -not -name ".gitignore" -exec cp --parents {} temp_website/ \;
- name: Deploy to mintlify-pages branch
uses: JamesIves/github-pages-deploy-action@v4
Expand Down

0 comments on commit 6a3079b

Please sign in to comment.