Skip to content

Commit

Permalink
Feat: fix demo page (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
dblackstone1 authored Nov 27, 2023
1 parent 86666b8 commit bf0ebb3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
on:
push:
branches:
- main # Deploy on changes to the main branch
- main # Set your default branch here

jobs:
deploy:
Expand All @@ -14,7 +14,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # Choose your Node.js version
node-version: '14' # Set your Node.js version here

- name: Install Dependencies
run: npm install
Expand All @@ -25,8 +25,6 @@ jobs:
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: main # Deploy to the main branch
folder: build # Folder to deploy
target-folder: docs # Where to put the build artifacts (GitHub Pages can be set to use /docs)
clean: true # Clean out old files
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.
token: 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 # Token for authentication

0 comments on commit bf0ebb3

Please sign in to comment.