Can I deploy artifacts to Bitbucket Pages?

cgrs December 20, 2016

As I stated here before: https://bitbucket.org/site/master/issues/13594/deploy-artifacts-to-bitbucket-pages, would it be possible to deploy artifacts to Bitbucket Pages, similarly to Gitlab Pages?

1 answer

1 accepted

1 vote
Answer accepted
Tom Bradshaw
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 20, 2016

Hi @Carlos González,

Bitbucket pages uses items from the repository. The easiest way to accomplish this is to build your artifact and then add the artifact, commit and push it back to the repository within the pipeline. If you do this the artifact should be added automatically.

To do this you will need a bitbucket-pipelines.yml that looks something like this

pipelines:
  default:
    - step:
       script:
		- addSshKeyToKeychainScript
        - generateArtifactScript
        - git config --global user.email "<email>"
        - git config --global user.name "<name>"
        - git config --global push.default simple
        - git add artifact
        - git commit -m '<message>'
        - git remote add origin2 <bitbucket repository url>
        - git push origin2 master

I would recommend using the ssh based repository url and an ssh key to authenticate the push (the addSshKeyToKeychainScript item in the yml). For more information about using ssh in pipelines please consult the documentation here https://answers.atlassian.com/questions/39243415 and here https://answers.atlassian.com/questions/39429257

Cheers,

Tom.

cgrs December 20, 2016

Thanks for the quick answer! For this moment it seems a little complicated for me, but i'll give a try on a test repo.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events