File tree 1 file changed +25
-4
lines changed
1 file changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,28 @@ https://medium.com/@mtigdemir/php-deployment-with-deployer-to-aws-via-bitbucket-
12
12
- PHP 7.1 (` mtigdemir\php-deployer-pipeline:7.1 ` )
13
13
- PHP 7.3 (` mtigdemir\php-deployer-pipeline:7.3.25 ` )
14
14
15
- {% gist 1bb599d7fa5caad3ab647aad87fadc18 %}
16
-
17
-
18
- Please note that, only PHP 7.1 tag uses Composer v1 and all the builds after that compatible with Composer v2
15
+ ```
16
+ image: mtigdemir/php-deployer-pipeline:{version}
17
+
18
+ pipelines:
19
+ branches:
20
+ master:
21
+ - step:
22
+ caches:
23
+ - composer
24
+ script:
25
+ - composer install
26
+ - vendor/bin/phpunit
27
+ - dep deploy -vvv test
28
+
29
+ production:
30
+ - step:
31
+ caches:
32
+ - composer
33
+ script:
34
+ - composer install --no-dev
35
+ - dep deploy production
36
+ ```
37
+
38
+
39
+ ** Please note that, only PHP 7.1 tag uses Composer v1 and all the builds after that compatible with Composer v2**
You can’t perform that action at this time.
0 commit comments