21
21
- checkout
22
22
23
23
- run :
24
- name : " Verify Environment"
25
- command : " sh ./scripts/ci/verify.sh build"
24
+ name : Verify Environment
25
+ command : sh ./scripts/ci/verify.sh build
26
26
27
27
verify-deploy-environment :
28
28
executor : deploy-environment
31
31
- checkout
32
32
33
33
- run :
34
- name : " Verify Environment"
35
- command : " sh ./scripts/ci/verify.sh deploy"
34
+ name : Verify Environment
35
+ command : sh ./scripts/ci/verify.sh deploy
36
36
37
37
verify-publish-environment :
38
38
executor : publish-environment
41
41
- checkout
42
42
43
43
- run :
44
- name : " Verify Environment"
45
- command : " sh ./scripts/ci/verify.sh publish"
44
+ name : Verify Environment
45
+ command : sh ./scripts/ci/verify.sh publish
46
46
47
47
build :
48
48
executor : build-environment
@@ -51,21 +51,21 @@ jobs:
51
51
- checkout
52
52
53
53
- run :
54
- name : " Install Packages"
54
+ name : Install Packages
55
55
56
56
command : |
57
- " apk update"
58
- " sh ./scripts/install/make.sh"
59
- " make install-git env=$BLOG_BUILD_ENV"
60
- " make install-hugo"
57
+ apk update
58
+ sh ./scripts/install/make.sh
59
+ make install-git env=$BLOG_BUILD_ENV
60
+ make install-hugo
61
61
62
62
- run :
63
- name : " Add Git Submodules"
64
- command : " make git-submodules env=$BLOG_BUILD_ENV"
63
+ name : Add Git Submodules
64
+ command : make git-submodules env=$BLOG_BUILD_ENV
65
65
66
66
- run :
67
- name : " Building Site"
68
- command : " make build-ci"
67
+ name : Building Site
68
+ command : make build-ci
69
69
70
70
- when :
71
71
condition :
@@ -88,17 +88,17 @@ jobs:
88
88
at : .
89
89
90
90
- run :
91
- name : " Install Packages"
91
+ name : Install Packages
92
92
93
93
command : |
94
- " apk update"
95
- " sh ./scripts/install/make.sh"
96
- " make install-npm"
97
- " make install-netlify-cli"
94
+ apk update
95
+ sh ./scripts/install/make.sh
96
+ make install-npm
97
+ make install-netlify-cli
98
98
99
99
- run :
100
- name : " Deploy To Netlify"
101
- command : " make deploy-ci id=$NETLIFY_SITE_ID token=$NETLIFY_ACCESS_TOKEN"
100
+ name : Deploy To Netlify
101
+ command : make deploy-ci id=$NETLIFY_SITE_ID token=$NETLIFY_ACCESS_TOKEN
102
102
103
103
publish :
104
104
executor : publish-environment
@@ -111,15 +111,15 @@ jobs:
111
111
version : 20.10.14
112
112
113
113
- run :
114
- name : " Install Packages"
114
+ name : Install Packages
115
115
command : |
116
- " apk update"
117
- " sh ./scripts/install/make.sh"
118
- " make install-docker-cli"
116
+ apk update
117
+ sh ./scripts/install/make.sh
118
+ make install-docker-cli
119
119
120
120
- run :
121
- name : " Publish To Docker Hub"
122
- command : " make publish-ci tag=$CIRCLE_TAG username=$DOCKER_USERNAME token=$DOCKER_ACCESS_TOKEN"
121
+ name : Publish To Docker Hub
122
+ command : make publish-ci tag=$CIRCLE_TAG username=$DOCKER_USERNAME token=$DOCKER_ACCESS_TOKEN
123
123
124
124
workflows :
125
125
verify :
0 commit comments