We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2ee93 commit c7bd27eCopy full SHA for c7bd27e
.github/workflows/gh-pages-deployment.yml
@@ -1,5 +1,5 @@
1
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2
-name: Deploy GitHub Pages site
+name: Build and deploy react app to GitHub pages
3
4
on:
5
# Runs on pushes targeting the default branch
@@ -28,6 +28,11 @@ jobs:
28
steps:
29
- name: Checkout
30
uses: actions/checkout@v4
31
+ - name: Auto-generate contents:
32
+ run: |
33
+ python -m pip install --upgrade pip
34
+ pip install -r requirements.txt
35
+ python index_contents.py
36
- name: Install dependencies
37
run: npm i
38
- name: Build react app
0 commit comments