Skip to content

Commit 3567997

Browse files
Merge pull request #102 from fle-bach/FixNameWorkflow
Change name jobs in config.yml
2 parents 72da0d7 + fcc0c88 commit 3567997

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
paths:
4040
- .
4141

42-
build_sh_reactiveapi:
42+
build_reactiveapi:
4343
docker:
4444
- image: microsoft/dotnet:2.1-sdk
4545
steps:
@@ -61,7 +61,7 @@ jobs:
6161
- packaging
6262
- nuget
6363

64-
build_sh_intergration_test_reactiveapi:
64+
build_integration_test:
6565
docker:
6666
- image: microsoft/dotnet:2.1-sdk
6767
steps:
@@ -88,7 +88,7 @@ jobs:
8888
paths:
8989
- docker
9090

91-
reactiveapi_integrationtests:
91+
run_reactiveapi_integration_test:
9292
docker:
9393
- image: circleci/node:10.12
9494
steps:
@@ -125,33 +125,33 @@ workflows:
125125
only: /^[0-9]++\.[0-9]++\.[0-9]++/
126126
branches:
127127
only: /.*/
128-
- build_sh_reactiveapi:
128+
- build_reactiveapi:
129129
requires:
130130
- checkout_code
131131
filters:
132132
tags:
133133
only: /^[0-9]++\.[0-9]++\.[0-9]++/
134134
branches:
135135
only: /.*/
136-
- build_sh_intergration_test_reactiveapi:
136+
- build_integration_test:
137137
requires:
138-
- build_sh_reactiveapi
138+
- build_reactiveapi
139139
filters:
140140
tags:
141141
only: /^[0-9]++\.[0-9]++\.[0-9]++/
142142
branches:
143143
only: /.*/
144-
- reactiveapi_integrationtests:
144+
- run_reactiveapi_integration_test:
145145
requires:
146-
- build_sh_intergration_test_reactiveapi
146+
- build_integration_test
147147
filters:
148148
tags:
149149
only: /^[0-9]++\.[0-9]++\.[0-9]++/
150150
branches:
151151
only: /.*/
152152
- deploy_nuget:
153153
requires:
154-
- reactiveapi_integrationtests
154+
- run_reactiveapi_integration_test
155155
filters:
156156
tags:
157157
only: /^[0-9]++\.[0-9]++\.[0-9]++/

0 commit comments

Comments
 (0)