Skip to content

Commit e6724c1

Browse files
committed
fetch tags in github actions so installed version is correct
1 parent 6aaf1b7 commit e6724c1

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

.github/workflows/testdask.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
uses: actions/checkout@v4
2929
with:
3030
repository: ${{ github.repository }}
31-
31+
- name: Fetch tags
32+
run: git fetch --prune --unshallow
3233
- name: Setup Python version ${{ matrix.python-version }}
3334
uses: actions/setup-python@v5
3435
with:

.github/workflows/testpsijlocal.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
uses: actions/checkout@v4
2929
with:
3030
repository: ${{ github.repository }}
31-
31+
- name: Fetch tags
32+
run: git fetch --prune --unshallow
3233
- name: Setup Python version ${{ matrix.python-version }}
3334
uses: actions/setup-python@v5
3435
with:

.github/workflows/testpsijslurm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
- name: Disable etelemetry
2626
run: echo "NO_ET=TRUE" >> $GITHUB_ENV
2727
- uses: actions/checkout@v4
28+
- name: Fetch tags
29+
run: git fetch --prune --unshallow
2830
- name: Pull docker image
2931
run: |
3032
docker pull $DOCKER_IMAGE

.github/workflows/testpydra.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
steps:
6060
- name: Fetch repository
6161
uses: actions/checkout@v4
62-
62+
- name: Fetch tags
63+
run: git fetch --prune --unshallow
6364
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
6465
uses: actions/setup-python@v5
6566
with:

.github/workflows/testsingularity.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ jobs:
6565
uses: actions/checkout@v4
6666
with:
6767
repository: ${{ github.repository }}
68+
- name: Fetch tags
69+
run: git fetch --prune --unshallow
6870
- name: Install pydra (test)
6971
run: pip install -e ".[test]"
7072

.github/workflows/testslurm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
- name: Disable etelemetry
2626
run: echo "NO_ET=TRUE" >> $GITHUB_ENV
2727
- uses: actions/checkout@v4
28+
- name: Fetch tags
29+
run: git fetch --prune --unshallow
2830
- name: Pull docker image
2931
run: |
3032
docker pull $DOCKER_IMAGE

0 commit comments

Comments
 (0)