You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have read few documentation on deployment feature of bitbucket. But I am having hard time relating it to my current setup of pipelines deployment.
What I have currently is branch based deployment with pipelines. Below you will see a sample pipeline files where
# This is a sample build configuration for PHP.
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: samueldebruyn/debian-git
pipelines:
branches:
custom: # dev server
- step:
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push -f --user $FTP_USER --passwd $FTP_PASS sftp://$SERVER_ADDRESS$DEV_PATH
production: # production server
- step:
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push -f --user $FTP_USER --passwd $FTP_PASS sftp://$SERVER_ADDRESS$PROD_PATH
The current settings is working fine for me. But it doesn't uses the bitbucket deployment keyword.
Few things I want to get clear conception here: