Skip to content

Commit

Permalink
add in static site script builder into action
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Jan 27, 2024
1 parent 6c2ee93 commit c7bd27e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/gh-pages-deployment.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy GitHub Pages site
name: Build and deploy react app to GitHub pages

on:
# Runs on pushes targeting the default branch
Expand Down Expand Up @@ -28,6 +28,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Auto-generate contents:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python index_contents.py
- name: Install dependencies
run: npm i
- name: Build react app
Expand Down

0 comments on commit c7bd27e

Please sign in to comment.