Skip to content

Commit

Permalink
stripped out unnecessary package install step from ci-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed May 20, 2024
1 parent 8ba0cb1 commit 60fd984
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,6 @@ jobs:
if: github.event_name == 'repository_dispatch'
run: git checkout $(git tag -l | grep 'v.*' | tail -n 1 | awk -F post '{print $1}')

- name: Cache niworkflows Install
id: cache-install
uses: actions/cache@v4
with:
path: ${{ env.niworkflows_install_dir }}
key: niworkflows-${{ env.niworkflows_version }}-${{ runner.os }}

- name: Install niworkflows Package
if: steps.cache-install.outputs.cache-hit != 'true'
run: |
echo "NOT IMPLEMENTED YET (install at niworkflows_install_dir: $niworkflows_install_dir)"
exit 1 # This is a placeholder, replace this line and the one above with the installation procedure
echo "PATH=${{ env.niworkflows_install_dir }}/bin:$PATH" >> $GITHUB_ENV
- name: Download tasks converted from Nipype
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 60fd984

Please sign in to comment.