Files
genesis-simple-sidebars/.circleci/config.yml
T

44 lines
877 B
YAML
Raw Normal View History

2019-04-22 17:28:46 -03:00
version: 2.1
2022-05-11 12:36:35 -05:00
orbs:
2024-03-06 10:57:06 -06:00
wp-svn: studiopress/wp-svn@0.2
executors:
base:
docker:
2022-05-11 12:38:12 -05:00
- image: cimg/base:current
working_directory: /tmp
php_node:
2019-04-22 17:28:46 -03:00
docker:
2022-05-11 12:38:12 -05:00
- image: cimg/php:7.3-node
working_directory: /tmp/src
jobs:
2020-03-30 15:22:25 -05:00
checks:
executor: php_node
2019-04-22 17:28:46 -03:00
steps:
2024-03-06 10:57:06 -06:00
- checkout
- run: composer install && composer phpcs
2019-04-22 17:28:46 -03:00
workflows:
2022-05-11 12:36:35 -05:00
test-deploy:
2020-03-30 15:22:25 -05:00
jobs:
2024-03-06 10:57:06 -06:00
- checks
2022-05-11 12:36:35 -05:00
- approval-for-deploy-tested-up-to-bump:
2024-03-06 10:57:06 -06:00
requires:
2022-05-11 12:36:35 -05:00
- checks
type: approval
filters:
tags:
ignore: /.*/
branches:
only: /^bump-tested-up-to.*/
- wp-svn/deploy-tested-up-to-bump:
context: genesis-svn
requires:
- approval-for-deploy-tested-up-to-bump
2024-03-06 10:57:06 -06:00
- wp-svn/deploy:
dry-run: true
requires:
2020-03-30 15:28:16 -05:00
- checks