Skip to content

Commit dd54d13

Browse files
committed
fix(circleci): use new indentation
1 parent 8fb745f commit dd54d13

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

.circleci/config.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,48 +9,48 @@ commands:
99
ditto-transform:
1010
description: Run Ditto in order to transform the base URL to https://pokeapi.co instead of localhost
1111
steps:
12-
- run: pip install --user -r requirements.txt
13-
- run:
14-
command: |
15-
~/.local/bin/ditto transform \
16-
--base-url='https://pokeapi.co' \
17-
--src-dir=data \
18-
--dest-dir=_gen
12+
- run: pip install --user -r requirements.txt
13+
- run:
14+
command: |
15+
~/.local/bin/ditto transform \
16+
--base-url='https://pokeapi.co' \
17+
--src-dir=data \
18+
--dest-dir=_gen
1919
2020
jobs:
2121
test:
2222
executor: python36
2323
steps:
24-
- checkout
25-
- ditto-transform
24+
- checkout
25+
- ditto-transform
2626
build:
2727
executor: python36
2828
steps:
29-
- checkout
30-
- ditto-transform
31-
- run: tar czf _gen.tar.gz _gen/*
32-
- store_artifacts:
33-
path: _gen.tar.gz
29+
- checkout
30+
- ditto-transform
31+
- run: tar czf _gen.tar.gz _gen/*
32+
- store_artifacts:
33+
path: _gen.tar.gz
3434
deploy:
3535
executor: python36
3636
steps:
3737
# Trigger a new build of the deploy project
38-
- run: "curl -X POST --header \"Content-Type: application/json\" https://circleci.com/api/v1.1/project/github/PokeAPI/deploy/build?circle-token=$CIRCLECI_API_TOKEN"
38+
- run: "curl -X POST --header \"Content-Type: application/json\" https://circleci.com/api/v1.1/project/github/PokeAPI/deploy/build?circle-token=$CIRCLECI_API_TOKEN"
3939

4040
workflows:
4141
version: 2
4242
test-build-and-deploy:
4343
jobs:
44-
- test
45-
- build:
46-
requires:
47-
- test
48-
filters:
49-
branches:
50-
only: master
51-
- deploy:
52-
requires:
53-
- build
54-
filters:
55-
branches:
56-
only: master
44+
- test
45+
- build:
46+
requires:
47+
- test
48+
filters:
49+
branches:
50+
only: master
51+
- deploy:
52+
requires:
53+
- build
54+
filters:
55+
branches:
56+
only: master

0 commit comments

Comments
 (0)