Skip to content

gh pages deploy

gh pages deploy #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- V2
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install and Build
run: |
npm install
npm run build
- name: Create CNAME File
run: echo "www.uncpmclub.com" > dist/CNAME
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.