Skip to content

Update version in package.json #39

Update version in package.json

Update version in package.json #39

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Install and Build 🔧
run: |
npm install
npm run build
npm run ghbuild
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
git-config-name: ${{ secrets.USER_NAME }}
git-config-email: ${{ secrets.USER_EMAIL }}
token: ${{ secrets.ACCESS_TOKEN }}
branch: gh-pages
folder: demo/dist