Skip to content

Delete docs/project-ideas directory #37

Delete docs/project-ideas directory

Delete docs/project-ideas directory #37

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 16.x
cache: npm
- name: Build website
run: |
npm install --frozen-lockfile
npm run build
echo 'handbook.sefglobal.org' > ./build/CNAME
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
user_name: sef-bot
user_email: [email protected]