File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,12 @@ jobs:
120
120
build-dev-docs :
121
121
runs-on : ubuntu-latest
122
122
steps :
123
+ - name : Checkout repository
124
+ uses : actions/checkout@v4
125
+ with :
126
+ fetch-depth : 0 # Required for hatch-vcs to generate full version
127
+ fetch-tags : true
128
+
123
129
- name : Set up environment variables
124
130
uses : ./.github/actions/setup-env
125
131
@@ -176,6 +182,12 @@ jobs:
176
182
runs-on : ubuntu-latest
177
183
needs : [ build-dev-docs, publish-to-azure-pypi ]
178
184
steps :
185
+ - name : Checkout repository
186
+ uses : actions/checkout@v4
187
+ with :
188
+ fetch-depth : 0 # Required for hatch-vcs to generate full version
189
+ fetch-tags : true
190
+
179
191
- name : Set up environment variables
180
192
uses : ./.github/actions/setup-env
181
193
Original file line number Diff line number Diff line change 48
48
build-release-docs :
49
49
runs-on : ubuntu-latest
50
50
steps :
51
+ - name : Checkout repository
52
+ uses : actions/checkout@v4
53
+ with :
54
+ fetch-depth : 0 # Required for hatch-vcs to generate full version
55
+ fetch-tags : true
56
+
51
57
- name : Set up Python Env
52
58
uses : ./.github/actions/setup-python-env
53
59
63
69
runs-on : ubuntu-latest
64
70
needs : [ build-release-docs, release ]
65
71
steps :
72
+ - name : Checkout repository
73
+ uses : actions/checkout@v4
74
+ with :
75
+ fetch-depth : 0 # Required for hatch-vcs to generate full version
76
+ fetch-tags : true
77
+
66
78
- name : Set up Python Env
67
79
uses : ./.github/actions/setup-python-env
68
80
You can’t perform that action at this time.
0 commit comments