Skip to content

Commit 139d8db

Browse files
authoredJul 14, 2024··
Merge pull request #184 from aragilar/test-auto-release
Use fetch-depth: 0 to fix release issues
2 parents c35bf35 + 85af756 commit 139d8db

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:
17-
fetch-tags: true
17+
fetch-depth: 0
1818

1919
- uses: actions/setup-python@v5
2020
with:

‎.github/workflows/test-core.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v4
3232
with:
33-
fetch-tags: true
33+
fetch-depth: 0
3434

3535
- name: Set up Python ${{ matrix.python-version }}
3636
uses: actions/setup-python@v5

‎.github/workflows/test-daepack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v4
2828
with:
29-
fetch-tags: true
29+
fetch-depth: 0
3030

3131
- name: Set up Python ${{ matrix.python-version }}
3232
uses: actions/setup-python@v5

‎.github/workflows/test-namespace.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
steps:
7070
- uses: actions/checkout@v4
7171
with:
72-
fetch-tags: true
72+
fetch-depth: 0
7373
- name: Set up Python ${{ matrix.python-version }}
7474
uses: actions/setup-python@v5
7575
with:

‎.github/workflows/test-sundials.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
steps:
7070
- uses: actions/checkout@v4
7171
with:
72-
fetch-tags: true
72+
fetch-depth: 0
7373
- name: Set up Python ${{ matrix.python-version }}
7474
uses: actions/setup-python@v5
7575
with:

0 commit comments

Comments
 (0)
Please sign in to comment.