This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zip -r lambdaFunction.zip * && aws lambda update-function-code --function-name $(basename "$PWD") --zip-file fileb://lambdaFunction.zip && rm lambdaFunction.zip && git add index.js && git commit && git push |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zip -r lambdaFunction.zip * && aws lambda update-function-code --function-name $(basename "$PWD") --zip-file fileb://lambdaFunction.zip && rm lambdaFunction.zip |