@haxtheweb/create
Version:
CLI for all things HAX the web
63 lines (53 loc) • 1.46 kB
YAML
name: Deploy HAX Site to GitHub Pages
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build HAX site
run: |
# HAX sites are typically static and ready to serve
# No build step needed for basic HAX sites
echo "HAX site ready for deployment"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4