Skip to content

Commit c79cfe0

Browse files
committed
yml
1 parent 867b211 commit c79cfe0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ jobs:
3030
run: npm run build:react
3131
- name: Bundle the app with Webpack
3232
run: npm run build:bundle
33+
- name: List files in the build directory
34+
run: ls -l ./build
3335
- name: Upload artifact
3436
uses: actions/upload-artifact@v4
3537
with:
3638
name: react-build
37-
path: build
38-
39+
path: ./build
3940
deploy:
4041
needs: build
4142
runs-on: ubuntu-latest
@@ -47,7 +48,7 @@ jobs:
4748
with:
4849
name: react-build # Correct artifact name
4950
- name: List files after download
50-
run: ls -l build # Confirm the artifact was downloaded correctly
51+
run: ls -l
5152
- name: Deploy to GitHub Pages
5253
uses: actions/deploy-pages@v4
5354
with:

0 commit comments

Comments
 (0)