Skip to content

Instantly share code, notes, and snippets.

@mtigdemir
Last active February 20, 2023 09:24
Show Gist options
  • Save mtigdemir/1bb599d7fa5caad3ab647aad87fadc18 to your computer and use it in GitHub Desktop.
Save mtigdemir/1bb599d7fa5caad3ab647aad87fadc18 to your computer and use it in GitHub Desktop.
Deployer Bitbucket Pipeline
image: mtigdemir/php-deployer-pipeline
pipelines:
branches:
master:
- step:
caches:
- composer
script:
- composer install
- vendor/bin/phpunit
- dep deploy -vvv test
production:
- step:
caches:
- composer
script:
- composer install --no-dev
- dep deploy production
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment