diff --git a/.github/workflows/cd.dev-functions.yaml b/.github/workflows/cd.dev-functions.yaml index 9a7cf31..8ec0a93 100644 --- a/.github/workflows/cd.dev-functions.yaml +++ b/.github/workflows/cd.dev-functions.yaml @@ -55,7 +55,7 @@ jobs: gcloud functions deploy get_user_tasks \ --project=autotx-423210 \ --gen2 \ - --source=autotx/serverless_functions/get_user_tasks.py \ + --source=autotx/serverless_functions \ --runtime=python310 \ --region=us-central1 \ --trigger-http \ diff --git a/autotx/serverless_functions/main.py b/autotx/serverless_functions/main.py new file mode 100644 index 0000000..81d38e0 --- /dev/null +++ b/autotx/serverless_functions/main.py @@ -0,0 +1,3 @@ +from autotx.serverless_functions.get_user_tasks import get_user_tasks + +__all__ = ["get_user_tasks"]