diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index ab7bad18e..cc714e2ed 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -183,7 +183,7 @@ jobs: if [[ ! -f bin/user-subscribe-lambda ]]; then echo "Missing bin/user-subscribe-lambda binary file. Exiting..."; exit 1; fi rm -rf ./node_modules/ yarn install - sls deploy --force --stage ${STAGE} --region us-east-2 + yarn sls deploy --force --stage ${STAGE} --region us-east-2 - name: EasyCLA v2 Service Check run: | diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index ea33e1a0f..ec6ed254b 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -158,7 +158,7 @@ jobs: if [[ ! -f bin/user-subscribe-lambda ]]; then echo "Missing bin/user-subscribe-lambda binary file. Exiting..."; exit 1; fi rm -rf ./node_modules/ yarn install - sls deploy --force --stage ${STAGE} --region us-east-2 + yarn sls deploy --force --stage ${STAGE} --region us-east-2 - name: EasyCLA v2 Service Check run: |