You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello @manish reddy ,
Welcome to the Community!
I think the indentation of the YML file you shared is a bit off, which might be causing the error when running your pipeline. I've made some adjustments and the following should be a valid YML file :
pipelines:
branches:
main:
- stage:
name: Build and test
deployment: develop
steps:
- step:
name: Build and package
script:
- apt-get update && apt-get install -y zip
- zip -rj code.zip ./lambda_code/*.*
- echo "deploy to develop environment"
artifacts:
- code.zip
- step:
name: Update Lambda code
script:
- pipe: atlassian/aws-lambda-deploy:0.2.1
variables:
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
AWS_DEFAULT_REGION: us-east-1
FUNCTION_NAME: my-lambda-function
COMMAND: update
ZIP_FILE: code.zip
I would also recommend using the Validator for bitbucket-pipelines.yml to check and fix any syntax error you might have in your YML file before pushing it to your repository.
Hope that helps! Let me know in case you have any questions :)
Thank you, @manish reddy !
Patrik S
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.