From 16af25245adb4b106fb5248f5395c008255bc194 Mon Sep 17 00:00:00 2001 From: gibsondan Date: Mon, 28 Oct 2024 14:35:41 -0500 Subject: [PATCH] Revert "Fix typo in serverless deploy yaml (#204)" This reverts commit 16278a2294b2a11cd5ef3d136539b54370929a40. --- github/serverless/dagster-plus-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github/serverless/dagster-plus-deploy.yml b/github/serverless/dagster-plus-deploy.yml index 82c6d90..ac57791 100644 --- a/github/serverless/dagster-plus-deploy.yml +++ b/github/serverless/dagster-plus-deploy.yml @@ -60,12 +60,12 @@ jobs: # First ensure the correct Python version is installed - name: Set up Python ${{ env.PYTHON_VERSION }} for target id: setup-python-version - if: steps.prerun.outputs.result == 'pex-deploy' + if: steps.pre-run.outputs.result == 'pex-deploy' uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} - name: Install setuptools - if: steps.prerun.outputs.result == 'pex-deploy' + if: steps.pre-run.outputs.result == 'pex-deploy' run: ${{ steps.setup-python-version.outputs.python-path }} -m pip install setuptools shell: bash