Skip to content

try it again

try it again #2

Workflow file for this run

name: Deploy to gh-pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Deploy to gh-pages
run: |
cp -r dist/* .
rm -rf dist
git add .
git diff-index --quiet HEAD || git commit -m "Update gh-pages with dist content"
git push origin gh-pages