Compare commits

..

No commits in common. "117fc8653e2f9224689700dcc5f35f29bc12f47f" and "1f50d3ec71036147c724d889bd87229e82f0f025" have entirely different histories.

2 changed files with 12 additions and 2 deletions

View file

@ -12,6 +12,11 @@ jobs:
- name: checkout repository - name: checkout repository
uses: https://code.forgejo.org/actions/checkout@v4 uses: https://code.forgejo.org/actions/checkout@v4
- name: Debug workspace
run: |
pwd
ls -la
- name: setup node - name: setup node
uses: https://github.com/actions/setup-node@v4 uses: https://github.com/actions/setup-node@v4
with: with:
@ -31,10 +36,15 @@ jobs:
- name: build project - name: build project
run: npm run build run: npm run build
- name: Debug2
run: |
echo "Listing build directory"
ls -l build
- name: Capture entire build folder - name: Capture entire build folder
uses: https://code.forgejo.org/forgejo/upload-artifact@v3 uses: https://code.forgejo.org/forgejo/upload-artifact@v3
with: with:
name: docusaurus-build-artifacts name: build-artifacts
path: build path: build
if-no-files-found: error if-no-files-found: error

View file

@ -34,7 +34,7 @@ jobs:
- name: capture build artifacts - name: capture build artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: docusaurus-build-artifacts name: docusaurus-build
path: build path: build
- name: Save npm cache - name: Save npm cache