8000 moved download of task template into separate job to avoid issues wit… by tclose · Pull Request #19 · nipype/nipype2pydra · GitHub
[go: up one dir, main page]

Skip to content

moved download of task template into separate job to avoid issues wit… #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
May 17, 2024
Merged
Prev Previous commit
Next Next commit
gha debugging
  • Loading branch information
tclose committed May 17, 2024
commit bbf5373260a62d49dd630074df0ee1b4f7430674
7 changes: 4 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:
- name: Download task template
run: |
LATEST=$(curl -s https://api.github.com/repos/nipype/pydra-tasks-template/releases/latest | grep tag_name | awk -F\" '{print $4}')
curl -Lo pydra-task-template.tar.gz https://github.com/nipype/pydra-tasks-template/archive/refs/tags/$LATEST.tar.gz
tar xzf pydra-task-template.tar.gz
curl -Lo pydra-tasks-template.tar.gz https://github.com/nipype/pydra-tasks-template/archive/refs/tags/$LATEST.tar.gz
tar xzf pydra-tasks-template.tar.gz
ls
mv pydra-tasks-template-* $HOME/pydra-tasks-template
mv pydra-tasks-template-$LATEST $HOME/pydra-tasks-template
ls $HOME

- uses: actions/upload-artifact@v4
with:
Expand Down
0