Skip to content

Instantly share code, notes, and snippets.

@h-enk
Last active February 5, 2021 12:02
Show Gist options
  • Save h-enk/f8aedf0ea597de8af452bdf063b6d203 to your computer and use it in GitHub Desktop.
Save h-enk/f8aedf0ea597de8af452bdf063b6d203 to your computer and use it in GitHub Desktop.
Workflow to deploy a Hyas site to GitHub Pages
# Deploy your Hyas site to GitHub Pages
name: GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm ci
- name: Check for linting errors
run: npm test
- name: Build production website
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment