Skip to content

Commit 031f4c4

Browse files
authored
Merge pull request #419 from yukinarit/fix-fetch-depth
Fix fetch-depth
2 parents d558f53 + 013de97 commit 031f4c4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/prerelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3
13-
fetch-depth: 0
13+
with:
14+
fetch-depth: 0
1415
- name: Install poetry
1516
run: pip install poetry poetry-dynamic-versioning
1617
- name: Set up Python 3.10

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3
13-
fetch-depth: 0
13+
with:
14+
fetch-depth: 0
1415
- name: Install poetry
1516
run: pip install poetry poetry-dynamic-versioning
1617
- name: Set up Python 3.10

0 commit comments

Comments
 (0)