We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292342d commit 360c429Copy full SHA for 360c429
.github/workflows/deploy.yml
@@ -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
@@ -35,5 +35,7 @@
35
"last 1 firefox version",
36
"last 1 safari version"
37
]
38
- }
+ },
39
+ "homepage": "https://CrazYRobotEnthusiast.github.io/helloworldreact/"
40
41
}
0 commit comments