Missed Team ’24? Catch up on announcements here.

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

how can i upload an artifact ?

yosser.mahfoudh October 12, 2020

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"

1 answer

0 votes
Halyna Berezovska
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 16, 2020

@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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events