Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/BuildArtifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ jobs:

# Upload the generated tarballs for this specific job.
- name: Upload tar.gz artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: model-tarballs-${{ steps.detect_version.outputs.version }}
path: data/models_v${{ steps.detect_version.outputs.version }}.tar.gz
retention-days: 7

# Upload the entire workspace to capture the generated TOML files.
- name: Upload workspace for Julia ${{ steps.detect_version.outputs.version }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: workspace-${{ steps.detect_version.outputs.version }}
path: .
Expand All @@ -135,7 +135,7 @@ jobs:
run: ls -lR

- name: Upload combined model archives artifact (versioned)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: model-archives-${{ needs.version_check.outputs.version }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Upload PNG plots as artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: test-plots-${{ matrix.os }}-julia${{ matrix.version }}-${{ matrix.arch }}
path: data/*.png
Expand Down
Loading