Skip to content

some vision

some vision #25

Workflow file for this run

name: Deploy to GitHub Pages
# Only serves the files, to deploy go on the github repo settings
# Maybe automate deploying on main pushes in the future?
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- run: npm run build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: www.subbots.ca