We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867b211 commit c79cfe0Copy full SHA for c79cfe0
.github/workflows/gh-pages.yml
@@ -30,12 +30,13 @@ jobs:
30
run: npm run build:react
31
- name: Bundle the app with Webpack
32
run: npm run build:bundle
33
+ - name: List files in the build directory
34
+ run: ls -l ./build
35
- name: Upload artifact
36
uses: actions/upload-artifact@v4
37
with:
38
name: react-build
- path: build
-
39
+ path: ./build
40
deploy:
41
needs: build
42
runs-on: ubuntu-latest
@@ -47,7 +48,7 @@ jobs:
47
48
49
name: react-build # Correct artifact name
50
- name: List files after download
- run: ls -l build # Confirm the artifact was downloaded correctly
51
+ run: ls -l
52
- name: Deploy to GitHub Pages
53
uses: actions/deploy-pages@v4
54
0 commit comments