You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi Everyone,
I'm new to CI/CD and I created a pipeline in bitbucket to push the built Maven application to an AWS S3 bucket.
The issue I need assistance resolving is constantly having to manually update the "ZIP_FILE" file path to the jar file that gets generated with a unique version number.
ZIP_FILE: '/opt/atlassian/pipelines/agent/build/target/application-0.1.0-SNAPSHOT.jar'
File "bitbucket-pipeline.yml"
image: maven:3.6.1
pipelines:
branches:
master:
- step:
name: "PRODUCTION pipeline"
caches:
- maven
deployment: production
script:
- echo "PRODUCTION SCRIPT RUNNING."
develop:
- step:
name: "Staging pipeline"
caches:
- maven
deployment: staging
script:
- echo "STAGING SCRIPT RUNNING."
- mvn -B verify
- mvn install
- mvn clean package spring-boot:repackage
- pipe: atlassian/aws-elasticbeanstalk-deploy:0.6.6
variables:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
APPLICATION_NAME: 'application'
ENVIRONMENT_NAME: 'application-staging'
ZIP_FILE: '/opt/atlassian/pipelines/agent/build/target/application-0.1.0-SNAPSHOT.jar'
Any suggestions and questions are welcomed,
Thank you!
@Luis Ramirez Briceño wildcard is not supported in aws elasticbeanstalk, but you can find your file via bash line:
FILE=$(ls /opt/atlassian/pipelines/agent/build/target/*.jar | tail -n 1)
Regards, Galyna
...hey are a part of us, shaping how we interact with the world around us. The same holds true for programming languages when we think about how different kinds of vulnerabilities raise their heads in t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.