From 5fcae0533d1244576ffbf2c59e7df7d8fec6adc5 Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 9 Jul 2024 18:02:19 -0400 Subject: [PATCH] clean up action --- .github/workflows/build-and-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 52b036a..ed5aca1 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -129,10 +129,12 @@ jobs: mamba install -y pyinstaller - name: Generate PyInstaller command + id: pyinstaller_cmd run: | source ~/miniforge3/etc/profile.d/conda.sh conda activate orion-env - pyinstaller --name orion --onedir --paths=$CONDA_PREFIX/lib/python3.11/site-packages --add-data "$CONDA_PREFIX:lib/orion-env" orion_cli/cli.py + pyinstaller --name orion --onedir --add-data "$CONDA_PREFIX:lib/orion-env" orion_cli/cli.py + echo "PyInstaller command executed." - name: Rename output directory run: | @@ -152,7 +154,6 @@ jobs: - build-windows: runs-on: windows-latest