From ab61166219b72e23ec60ccd7ba55727fcc924b18 Mon Sep 17 00:00:00 2001 From: Ben Galewsky Date: Tue, 31 Oct 2023 14:13:04 -0500 Subject: [PATCH] Build docker image for submissions lambda --- .github/workflows/deploy-lambda.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-lambda.yml b/.github/workflows/deploy-lambda.yml index 3c1bea9..a0e2531 100644 --- a/.github/workflows/deploy-lambda.yml +++ b/.github/workflows/deploy-lambda.yml @@ -5,7 +5,7 @@ name: CI on: push: branches: - - "serverless" + - "submissions" workflow_dispatch: permissions: @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: serverless + ref: submissions # Check out the schema repo to package up the JSON schema with lambda function @@ -61,7 +61,7 @@ jobs: fail-fast: false matrix: # Loop over each lambda function - lambda: ["auth", "submit", "status"] + lambda: ["auth", "submit", "status", "submissions"] needs: test runs-on: ubuntu-latest @@ -69,7 +69,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: serverless + ref: submissions # Check out the schema repo to package up the JSON schemae with function - name: Checkout schema repo