Skip to content

add deploy.yml

add deploy.yml #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build and deploy
run: |
git checkout -b gh-pages
git rm -rf --cached *
git checkout main -- build
cp -r build/* .
git add .
git commit -m "Deploy to GitHub Pages"
git push origin gh-pages