diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 9534435e..6801bd4a 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -52,10 +52,7 @@ jobs: shell: bash -el {0} run: | # Check if RUNNER_OS is macOS and set CONDA_SUBDIR accordingly - if [[ "$RUNNER_OS" == "macOS" ]]; then - echo "Running on macOS, exporting CONDA_SUBDIR=osx-amd64" - export CONDA_SUBDIR=osx-amd64 - fi + if [[ "$RUNNER_OS" == "macOS" ]]; then export CONDA_SUBDIR=osx-amd64; fi # Create and activate the build environment echo "Creating build environment..." diff --git a/.github/workflows/conda-release.yml b/.github/workflows/conda-release.yml index 5549a6e8..e10dd245 100644 --- a/.github/workflows/conda-release.yml +++ b/.github/workflows/conda-release.yml @@ -50,10 +50,7 @@ jobs: shell: bash -el {0} run: | # Check if RUNNER_OS is macOS and set CONDA_SUBDIR accordingly - if [[ "$RUNNER_OS" == "macOS" ]]; then - echo "Running on macOS, exporting CONDA_SUBDIR=osx-amd64" - export CONDA_SUBDIR=osx-amd64 - fi + if [[ "$RUNNER_OS" == "macOS" ]]; then export CONDA_SUBDIR=osx-amd64; fi # Create and activate the build environment echo "Creating build environment..."