Skip to content

Commit 360c429

Browse files
hmm
1 parent 292342d commit 360c429

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/deploy.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Deploy React App to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout Repository
14+
uses: actions/checkout@v3
15+
16+
- name: Install Dependencies
17+
run: npm install
18+
19+
- name: Build React App
20+
run: npm run build
21+
22+
- name: Deploy to GitHub Pages
23+
uses: JamesIves/github-pages-deploy-action@v4
24+
with:
25+
branch: gh-pages # Will create gh-pages if it doesn’t exist
26+
folder: build # The directory to deploy

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,7 @@
3535
"last 1 firefox version",
3636
"last 1 safari version"
3737
]
38-
}
38+
},
39+
"homepage": "https://CrazYRobotEnthusiast.github.io/helloworldreact/"
40+
3941
}

0 commit comments

Comments
 (0)