File tree 1 file changed +13
-5
lines changed 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -175,11 +175,6 @@ jobs:
175
175
with :
176
176
fetch-depth : 0
177
177
178
- - name : Create Tag
179
- uses : rickstaa/action-create-tag@v1
180
- with :
181
- tag : " conda-${{ needs.version_check.outputs.PCAPKIT_VERSION }}+0"
182
-
183
178
- uses : actions/setup-python@v4
184
179
with :
185
180
python-version : ${{ matrix.python-version }}
@@ -192,11 +187,24 @@ jobs:
192
187
python -m pip install -e .[all]
193
188
python -m pip install pathlib2 typing_extensions
194
189
190
+ - name : Checkout at Version
191
+ run : |
192
+ set -x
193
+
194
+ git checkout v$(python -c 'import pcapkit; print(pcapkit.__version__)')
195
+
196
+ - name : Create Tag
197
+ uses : rickstaa/action-create-tag@v1
198
+ with :
199
+ tag : " conda-${{ needs.version_check.outputs.PCAPKIT_VERSION }}+0"
200
+ github_token : ${{ secrets.GITHUB_TOKEN }}
201
+
195
202
- name : Setup Conda Distribution
196
203
run : |
197
204
export PCAPKIT_DEVMODE=1
198
205
export PCAPKIT_VERBOSE=1
199
206
207
+ echo 0 > conda/build
200
208
python util/conda-dist.py
201
209
202
210
- name : Conda environment creation and activation
You can’t perform that action at this time.
0 commit comments