Skip to content

Commit de8080f

Browse files
committed
Try fetching full repo
1 parent 394a3b7 commit de8080f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-and-publish-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v5
1313
with:
14+
fetch-depth: 0 # fetch all history including tags -- necessary to determine the version from SCM
1415
persist-credentials: false
15-
fetch-tags: true
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:

.github/workflows/build-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2121
with:
22-
fetch-tags: true
22+
fetch-depth: 0 # fetch all history including tags -- necessary to determine the version from SCM
2323

2424
- name: Log in to the Container registry
2525
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef

.github/workflows/tox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v5
1818
with:
19-
fetch-tags: true
19+
fetch-depth: 0 # fetch all history including tags -- necessary to determine the version from SCM
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v6
2222
with:

0 commit comments

Comments
 (0)