Skip to content

Commit

Permalink
Fix update to workflow to use Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
prushfor authored and prushforth committed Oct 21, 2024
1 parent f653661 commit d0cd45e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install and Build
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '18.x'
run: |
npm install
npm run build
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build
folder: build

0 comments on commit d0cd45e

Please sign in to comment.