Skip to content

Commit 3a3e0e1

Browse files
author
Airscript
committed
fix: remove quotes in ci's config file
1 parent 4265ef7 commit 3a3e0e1

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

.circleci/config.yml

+28-28
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- checkout
2222

2323
- 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
2626

2727
verify-deploy-environment:
2828
executor: deploy-environment
@@ -31,8 +31,8 @@ jobs:
3131
- checkout
3232

3333
- 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
3636

3737
verify-publish-environment:
3838
executor: publish-environment
@@ -41,8 +41,8 @@ jobs:
4141
- checkout
4242

4343
- 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
4646

4747
build:
4848
executor: build-environment
@@ -51,21 +51,21 @@ jobs:
5151
- checkout
5252

5353
- run:
54-
name: "Install Packages"
54+
name: Install Packages
5555

5656
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
6161
6262
- 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
6565

6666
- run:
67-
name: "Building Site"
68-
command: "make build-ci"
67+
name: Building Site
68+
command: make build-ci
6969

7070
- when:
7171
condition:
@@ -88,17 +88,17 @@ jobs:
8888
at: .
8989

9090
- run:
91-
name: "Install Packages"
91+
name: Install Packages
9292

9393
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
9898
9999
- 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
102102

103103
publish:
104104
executor: publish-environment
@@ -111,15 +111,15 @@ jobs:
111111
version: 20.10.14
112112

113113
- run:
114-
name: "Install Packages"
114+
name: Install Packages
115115
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
119119
120120
- 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
123123

124124
workflows:
125125
verify:

0 commit comments

Comments
 (0)