From 9d9f2f59d2c024e2d44f83275de14b6592d7c3fb Mon Sep 17 00:00:00 2001 From: = Date: Fri, 18 Oct 2024 15:09:51 +0200 Subject: [PATCH] Update workflow --- .github/workflows/pull-request.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 86f32cdd..ddd07c69 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -37,15 +37,14 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - run: | - python -m pip install --upgrade pip - pip install -r requirements/prefect.txt - pip install -r requirements/prod.txt - - env: PREFECT_API_URL: ${{ secrets.PREFECT_API_URL }} run: | prefect config set PREFECT_API_URL=$PREFECT_API_URL + - run: | + python -m pip install --upgrade pip + pip install -r requirements/prefect.txt + pip install -r requirements/prod.txt + python -m src.deploy_prefect.deployment - - run: python -m src.deploy_prefect.deployment