From 56b949c877aebb168e06fbcd033853a0997d4b83 Mon Sep 17 00:00:00 2001 From: Tim Beccue <35314207+timbeccue@users.noreply.github.com> Date: Tue, 22 Oct 2024 08:57:26 -0700 Subject: [PATCH] Specify serverless v3 for deploy script Otherwise, it will use the latest (v4+) which breaks the public_key file import in serverless.yml --- .github/workflows/deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index d2bb299..d4c8317 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -22,7 +22,7 @@ jobs: python-version: 3.9 - name: Install Serverless Framework - run: npm install -g serverless + run: npm install -g serverless@^3 # public_key and secrets.json both used for api auth guards using Auth0 - name: Create public_key file