Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,211
Community Members
 
Community Events
184
Community Groups

adding stage step giving error

Edited
manish reddy
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Mar 23, 2023
pipelines:
  branches:
    main:
      - stage:
          name: Build and test
          deployment: develop
          steps:
            - step: null
              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

1 answer

0 votes
Patrik S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Mar 28, 2023

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

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events