From c186aade3df77e7d7938c0bb81cd1d16b9965ff9 Mon Sep 17 00:00:00 2001 From: Alex Turner Date: Mon, 7 Oct 2024 15:04:06 -0700 Subject: [PATCH] Add python source build --- .github/actions/build-python-from-source/action.yml | 1 + .github/workflows/build.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/actions/build-python-from-source/action.yml b/.github/actions/build-python-from-source/action.yml index d7c94de..6fe1a23 100644 --- a/.github/actions/build-python-from-source/action.yml +++ b/.github/actions/build-python-from-source/action.yml @@ -96,6 +96,7 @@ runs: # Make sure we use our version of python. - name: Set LOCAL_PYTHON envvar run: echo "LOCAL_PYTHON=$prefix/bin/python3" >> $GITHUB_ENV + shell: bash # Ensure python is in the path and log out the version to help with debug. - name: Verify Python Installation diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc86b13..09341fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,6 +84,7 @@ jobs: - name: Set LOCAL_PYTHON envvar if: matrix.build-from-source == false run: echo "LOCAL_PYTHON=python" >> $GITHUB_ENV + shell: bash # Upgrade pip to the latest version. - name: Upgrade pip