Update deploy.yml #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Docusaurus site to GitHub Pages | |
on: | |
push: | |
branches: | |
- main # Change this to your default branch if it's not 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' # Use Node.js version 20 | |
- name: Install dependencies | |
run: npm install | |
working-directory: ./Xceed-Words-Tutorials | |
- name: Build site | |
run: npm run build | |
working-directory: ./Xceed-Words-Tutorials | |
- name: Create .nojekyll file | |
run: echo "" > ./Xceed-Words-Tutorials/docs/.nojekyll | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.DEPLOY_TOKEN_SECRET }} | |
publish_dir: ./Xceed-Words-Tutorials/docs |