20 lines
438 B
YAML
20 lines
438 B
YAML
name: Build and Deploy Edge version to GH Pages
|
|
on: [push]
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
- name: Install and Build 🔧
|
|
run: |
|
|
yarn install
|
|
yarn build
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@4.1.5
|
|
with:
|
|
branch: gh-pages
|
|
folder: build
|