We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ad0c52 commit 8d73ae2Copy full SHA for 8d73ae2
.circleci/config.yml
@@ -20,6 +20,12 @@ install_deploysuite: &install_deploysuite
20
cp ./../buildscript/awsconfiguration.sh .
21
no_output_timeout: 30m
22
23
+build_app: &build_app
24
+ name: Build the app
25
+ command: |
26
+ ./build.sh
27
+ no_output_timeout: 30m
28
+
29
30
restore_cache_settings_for_build: &restore_cache_settings_for_build
31
key: docker-node-modules-{{ checksum "package-lock.json" }}
@@ -35,9 +41,7 @@ builddeploy_steps: &builddeploy_steps
35
41
- run: *install_dependency
36
42
- run: *install_deploysuite
37
43
- restore_cache: *restore_cache_settings_for_build
38
- - run:
39
- command: ./build.sh
40
- no_output_timeout: 30m
44
+ - run: *build_app
45
- save_cache: *save_cache_settings
46
- deploy:
47
name: Running MasterScript.
0 commit comments