Skip to content

Commit

Permalink
Bug/Sls command script
Browse files Browse the repository at this point in the history
- Resolved the yarn sls command call in the GH pipeline

Signed-off-by: Harold Wanyama <[email protected]>
  • Loading branch information
nickmango committed Jun 11, 2024
1 parent 0d824a5 commit 0f343f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 0f343f2

Please sign in to comment.