Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ jobs:

# --- Upload built site as artifact for deploy job ---
- name: Upload built site artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: site
path: site
retention-days: 7

# --- Upload generated content that should be committed on main ---
- name: Upload generated content artifact (to commit on main)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: generated
path: |
Expand Down Expand Up @@ -146,14 +146,14 @@ jobs:

# --- Retrieve generated files produced by the build job ---
- name: Download generated content artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: generated
path: .

# --- Retrieve the already-built site folder ---
- name: Download built site artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: site
path: ./site
Expand Down