You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Install and Build 🔧# This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
16
12
run: |
17
-
npm ci
13
+
npm install
18
14
npm run build
19
15
20
-
- name: Debug build output
21
-
run: |
22
-
echo "Build contents:"
23
-
ls -la build
24
-
25
16
- name: Deploy 🚀
26
17
uses: JamesIves/github-pages-deploy-action@4.1.4
27
18
with:
28
-
branch: gh-pages
29
-
folder: build
30
-
clean: true
19
+
branch: gh-pages # The branch the action should deploy to.
20
+
folder: build # The folder the action should deploy.
0 commit comments