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,551,671
Community Members
 
Community Events
184
Community Groups

Bitbucket pipeline to build and push artifact to another repo

I have a repo with all my source code (JavaScript) in, and I am trying to create a pipeline that builds this using Browserify, and then pushes only the final files to another bitbucket repo. The files to push are bundle.js (generated by Browserify), as well as an HTML page and CSS.
With my attempts so far, I've managed to push either just the html and CSS, or all the source files without the artifact, but I'm not really sure where to go.
Any help is greatly appreciated. Thank you in advance

2 answers

If you want to push from REPO-A to REPO-B, first import your SSH keys (or create another user who have write access to REPO-B) to the SSH keys section of REPO-A repository settings.

Then you can add lines like this in your bitbucket-piplelines.yml file:

- date > test.txt
- apt-get update
- apt install --assume-yes --no-install-recommends git openssh-client
- git config --global user.name bitbucket-pipelines
- git config --global user.email commits-noreply@bitbucket.org
- git clone git@bitbucket.org:REPO_OWNER/REPO-B.git
- cp test.txt REPO-B
- cd REPO-B
- git add -A
- git commit -m "Added new version of test.txt at $(date)"
- git push

Thanks for your reply - this was a while ago so I no longer need this, but hopefully it’ll be useful for someone else :)

Like # people like this

Hey i am not able to achieve, to push in another bitbucket repo from another repo pipeline. Can you please explain how i can put SSH keys?

what you have written above to import keys, that i am not able to get properly.

Hey Shanish, see https://bitbucket.org/blog/cloning-another-bitbucket-repository-in-bitbucket-pipelines, it should help.

Update: actually, nevermind. This method only enables read-only access to the target repository so you won't be able to push.

Like # people like this
0 votes
Peter Plewa
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 16, 2018

Hi @alexclifton4

Could you share your bitbucket-pipelines.yml, it looks like you are not staging bundle.js with other files, perhaps it is specified in .gitignore?

Thanks,

Peter

I tried a few different things and this was the closest that I got:

image: node:4.6.0

pipelines:
  default:
    - step:
        caches:
           - node
        script: # Modify the commands below to build your repository.
          - npm install -g browserify
          - browserify src/main.js -o bundle.js
          - git config user.email **email**
          - git checkout -b temp
          - git remote add dist https://**username**:$PASSWORD@bitbucket.org/ragnarokgame/ragnarokgame.bitbucket.io.git
          - git add bundle.js
          - git add index.html
          - git add style.css
          - git commit -m "build [skip ci]"
          - git push dist master --force

 (I've removed my username and email to post it here)

 

Any help is greatly appreciated as I'm very new to this.

Peter Plewa
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 19, 2018

Hey @alexclifton4

Try removing bundle.js entry from your .gitignore file.

Thanks,

Peter

Hi!

It wasn't in my .gitignore file, but I've now changed my workflow so that I no longer need to do this.

Thank you for your help anyway!

Alex

@alexclifton4 

Hey did you ever get this working? Trying to do something similar. 

 

I have repo A, I make a commit. I create a patch file of the last commit and I want to apply that patch to another repo in BitBucket, repo B.

I never did I’m afraid - this was for a project I was working on a while ago

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events