Skip to content

Commit

Permalink
feat(gh-actions): add gh action for deploying to gh pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Sisha0 committed Oct 7, 2021
1 parent 5aaa9fd commit 6680ef2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: GH Pages Build and Deploy

on:
push:
branches:
- main
workflow_dispatch:

env:
node-version: 14.x

jobs:
deploy-gh-pages:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node v${{ env.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.node-version }}
- name: Install NPM Dependencies
run: npm ci
- name: Build
run: npm run build-pages
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages
folder: pages/dist

0 comments on commit 6680ef2

Please sign in to comment.