Skip to content

Update footer links for roadmap and 11ty template #33

Update footer links for roadmap and 11ty template

Update footer links for roadmap and 11ty template #33

Workflow file for this run

name: Build and Deploy
permissions:
contents: write
on:
push:
branches:
- main
workflow_dispatch:
env:
URL: 'https://footballcal.com'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install and Build 🔧
run: |
npm install
npm test
npm run build
- name: Copy CNAME
run: cp CNAME ./dist/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages
folder: dist