mirror of
https://github.com/JonasunderscoreJones/docs.jonasjones.dev.git
synced 2025-10-23 02:59:18 +02:00
Compare commits
No commits in common. "117fc8653e2f9224689700dcc5f35f29bc12f47f" and "1f50d3ec71036147c724d889bd87229e82f0f025" have entirely different histories.
117fc8653e
...
1f50d3ec71
2 changed files with 12 additions and 2 deletions
|
@ -12,6 +12,11 @@ jobs:
|
|||
- name: checkout repository
|
||||
uses: https://code.forgejo.org/actions/checkout@v4
|
||||
|
||||
- name: Debug workspace
|
||||
run: |
|
||||
pwd
|
||||
ls -la
|
||||
|
||||
- name: setup node
|
||||
uses: https://github.com/actions/setup-node@v4
|
||||
with:
|
||||
|
@ -31,10 +36,15 @@ jobs:
|
|||
- name: build project
|
||||
run: npm run build
|
||||
|
||||
- name: Debug2
|
||||
run: |
|
||||
echo "Listing build directory"
|
||||
ls -l build
|
||||
|
||||
- name: Capture entire build folder
|
||||
uses: https://code.forgejo.org/forgejo/upload-artifact@v3
|
||||
with:
|
||||
name: docusaurus-build-artifacts
|
||||
name: build-artifacts
|
||||
path: build
|
||||
if-no-files-found: error
|
||||
|
||||
|
|
2
.github/workflows/build-docusaurus.yml
vendored
2
.github/workflows/build-docusaurus.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
|||
- name: capture build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: docusaurus-build-artifacts
|
||||
name: docusaurus-build
|
||||
path: build
|
||||
|
||||
- name: Save npm cache
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue