Skip to content

Commit c452a7c

Browse files
authored
Merge pull request #60 from nipype/ci-cd-fix
fixed post-release version lookup in ci-cd
2 parents 4ca1f4f + d59d12f commit c452a7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ name: CI/CD
88

99
on:
1010
push:
11-
branches: [ master, develop ]
11+
branches: [ main, develop ]
1212
pull_request:
13-
branches: [ master, develop ]
13+
branches: [ main, develop ]
1414
release:
1515
types: [published]
1616
repository_dispatch:
@@ -336,7 +336,7 @@ jobs:
336336
- name: Generate post-release tag based on Nipype and Nipype2Pydra versions
337337
id: post_release_tag
338338
run: |
339-
POST=$(python -c "from pydra.tasks.fsl.auto._version import *; print(post_release)")
339+
POST=$(python -c "from pydra.tasks.fsl.auto._post_release import *; print(post_release)")
340340
echo "TAG=${{ steps.latest_tag.outputs.TAG }}post${POST}" >> $GITHUB_OUTPUT
341341
342342
- name: Add auto directory to git repo

0 commit comments

Comments
 (0)