Skip to content

Commit

Permalink
Merge branch 'main' into react
Browse files Browse the repository at this point in the history
  • Loading branch information
hmellor authored Dec 17, 2023
2 parents ae0d747 + 098fddf commit ccf8cc6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- react

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '21'

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Deploy
uses: actions/deploy-pages@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ccf8cc6

Please sign in to comment.