Skip to content

Commit c9c0fcf

Browse files
committed
ghdb
1 parent a72f1e7 commit c9c0fcf

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/ci-cd.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ jobs:
2626
rm pydra-tasks-template.tar.gz
2727
mv pydra-tasks-template-${LATEST#v} pydra-tasks-template
2828
tar czf pydra-tasks-template.tar.gz pydra-tasks-template
29-
echo $PWD
30-
ls
3129
3230
- uses: actions/upload-artifact@v4
3331
with:
3432
name: tasks-template
35-
path: /pydra-tasks-template.tar.gz
33+
path: pydra-tasks-template.tar.gz
3634

3735
test:
3836
needs: [download-task-template]
@@ -54,13 +52,10 @@ jobs:
5452
uses: actions/download-artifact@v4
5553
with:
5654
name: tasks-template
57-
path: /pydra-tasks-template.tar.gz
55+
path: .
5856

5957
- name: Extract the pydra-tasks-template
60-
run: |
61-
pushd /
62-
tar xzf pydra-tasks-template.tar.gz
63-
popd
58+
run: tar xzf pydra-tasks-template.tar.gz
6459

6560
- name: Unset header
6661
# checkout@v2 adds a header that makes branch protection report errors
@@ -99,7 +94,7 @@ jobs:
9994

10095
- name: Pytest
10196
run: >-
102-
NIPYPE2PYDRA_PYDRA_TASK_TEMPLATE=/pydra-tasks-template
97+
NIPYPE2PYDRA_PYDRA_TASK_TEMPLATE=$PWD/pydra-tasks-template
10398
pytest -vvs --cov nipype2pydra --cov-config .coveragerc --cov-report xml
10499
105100
- name: Upload coverage to Codecov

0 commit comments

Comments
 (0)