Update packages #17
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: Build and Publish Web Site | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
build: | |
name: Build and Deploy Website | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Check out the repository | |
- uses: actions/checkout@v3 | |
name: Checkout | |
# Step 2: Setup Node.js environment | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'npm' # Caches node_modules for faster builds | |
# Step 3: Install dependencies | |
- name: Install Dependencies | |
run: npm ci # Faster and more reliable for CI environments | |
# Step 4: Build the project | |
- name: Build | |
run: npm run build | |
# Step 5: Redirect 404 to index.html for SPA | |
- name: Setup SPA Redirect | |
run: cp dist/index.html dist/404.html | |
# Step 6: Deploy to GitHub Pages | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
cname: docs.angor.io |