From b6043c6f4a0f863551b8b0661fc214746b3ca5d1 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 15 Mar 2025 02:22:45 +0000 Subject: [PATCH] [workflows]: Fix mangled paths --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 940f4e3..a861425 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,13 +66,13 @@ jobs: deploy: - needs: test # Ensures deployment happens only if tests pass + needs: test runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' # Deploy only from main branch + if: github.ref == 'refs/heads/main' strategy: matrix: - function_name: [fetch_permanent_data, return_luas_data, return_station_data, fetch_transient_data __pycache__ return_permanent_data return_transient_data] + function_name: [fetch_permanent_data, return_luas_data, return_station_data, fetch_transient_data, return_permanent_data, return_transient_data] steps: - name: Checkout repository @@ -83,7 +83,6 @@ jobs: with: python-version: '3.13' - # ✅ Check if AWS CLI is installed and update it instead of reinstalling - name: Check AWS CLI version run: aws --version || echo "AWS CLI not found"