Skip to content

Commit 5a96e89

Browse files
committed
Fix one-key installation build for windows
1 parent a3fdfca commit 5a96e89

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/conda-pack-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ jobs:
207207
if: steps.should_build.outputs.should_build == 'true' && matrix.platform == 'win-64'
208208
run: |
209209
echo Packing unilab environment with conda-pack...
210-
mamba activate unilab
211-
conda pack -n unilab -o unilab-env-${{ matrix.platform }}.tar.gz --ignore-missing-files
210+
mamba activate unilab && conda pack -n unilab -o unilab-env-${{ matrix.platform }}.tar.gz --ignore-missing-files
212211
echo Pack file created:
213212
dir unilab-env-${{ matrix.platform }}.tar.gz
214213

scripts/create_readme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def main():
172172
with open(output_path, "w", encoding="utf-8") as f:
173173
f.write(readme_content)
174174

175-
print(f" README.txt created: {output_path}")
175+
print(f" README.txt created: {output_path}")
176176
print(f" Platform: {args.platform}")
177177
print(f" Branch: {args.branch}")
178178

0 commit comments

Comments
 (0)