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.
this is my pipeline . i need to add a script for the upload of my artifact . please i need help
image: "maven:3.6.3-openjdk-11"
pipelines:
default:
-
step:
artifacts:
- target/builldname.jar
caches:
- maven
script:
- "mvn -B install"
- "ls -R $BITBUCKET_CLONE_DIR"
@yosser.mahfoudh you can use your artifacts just in all steps you write afterwards.
Check out our template example https://bitbucket.org/bitbucketpipelines/template-java-spring-boot-elastic-beanstalk/src/6328ba025be4a461a3e004c61b1e25817627b6a0/bitbucket-pipelines.yml#lines-43
Here jar is packaged additionally with zip, but you can skip this step and use just jar in the next deploy step.
So you pipeline will look sth like this:
step:
name: Build
script:
- mvn -B install
artifacts:
- target/build.jar
step:
name: Deploy
script:
- deploy target/build.jar to your destination
If you need specific workflow deploying to aws or azure or google or somewhere else, check out our pipes marketplace or repo above (there you can navigate to other public repos in the project).
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.