The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

adding stage step giving error

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!
March 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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Patrik S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 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

DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events