Hello,
I would like to deploy a master branch when I want under my server.
As an example I have the following configuration
image: php:7.2.14-fpm
pipelines:
default:
- step:
script:
- echo 'This runs by default for each branch'
branches:
master:
- step:
script:
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- composer install
- vendor/bin/phpunit --testdox
- step:
name: Deploy to Staging
deployment: staging
script:
- xxxxxx
but I don't really understand how to deploy the project on my server.
The Deploy to Staging it creates a deployment in Bitbucket but how will '
git clone , composer install in my server from bitbucket?
Hi @apapazisis
Bitbucket Pipelines just defines the workflow for your deployment. How do you deploy the project on your server locally? For example, do you use FTP, SSH or some use some framework/tool?
You'll need to copy those commands into the script section you've labelled with 'xxxxxx'. You might also need to configure any login/connections depending on what you need.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.