Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
docker images
docker run --rm ${{env.USER_NAME}}/${{env.REPO_NAME}} --version
- name: Upload docker artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docker
path: ${{ env.IMAGE }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
--reindex-bids

- name: Upload output artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: connectome_${{ matrix.atlas }}
path: ./outputs/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-paper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# This should be the path to the paper within your repo.
paper-path: paper/paper.md
- name: Upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: paper
# This is the output path where Pandoc will write the compiled
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ jobs:
run: python -m build
- run: twine check dist/*
- name: Upload sdist and wheel artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist
path: dist/
- name: Build git archive
run: mkdir archive && git archive -v -o archive/archive.tgz HEAD
- name: Upload git archive artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: archive
path: archive/
Expand Down
Loading