Skip to content

Commit

Permalink
Merge pull request #176 from exadel-inc/feature/gh-pages-action
Browse files Browse the repository at this point in the history
Feature/gh-action for gh-pages deployment
  • Loading branch information
Sisha0 authored Oct 7, 2021
2 parents 5aaa9fd + b94b56a commit d6572e9
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@v2
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.5
with:
branch: gh-pages
folder: pages/dist

0 comments on commit d6572e9

Please sign in to comment.