Skip to content

fix: change branch deployment #2

fix: change branch deployment

fix: change branch deployment #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create public folder for build output
run: mkdir -p public
- name: Run npm install
run: npm install
- name: Run npm build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages
folder: public