From f516ff18328acef347d3d1fada0c7ce9c87766ae Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Thu, 7 Jul 2022 09:32:12 -0400
Subject: [PATCH 1/7] Create config.yml
---
.circleci/config.yml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 .circleci/config.yml
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..94a8ad3
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,26 @@
+# Use the latest 2.1 version of CircleCI pipeline process engine.
+# See: https://circleci.com/docs/2.0/configuration-reference
+version: 2.1
+
+# Define a job to be invoked later in a workflow.
+# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
+jobs:
+ say-hello:
+ # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
+ # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
+ docker:
+ - image: circleci/ruby:2.4.1-node-browsers
+ # Add steps to the job
+ # See: https://circleci.com/docs/2.0/configuration-reference/#steps
+ steps:
+ - checkout
+ - run:
+ name: "Say hello"
+ command: "echo Hello, World!"
+
+# Invoke jobs via workflows
+# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
+workflows:
+ say-hello-workflow:
+ jobs:
+ - say-hello
From 4b12b6577287ba62439b7fbb7e2650a13c427d75 Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Thu, 7 Jul 2022 09:36:55 -0400
Subject: [PATCH 2/7] add validations
---
.circleci/config.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 94a8ad3..279b801 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,8 +15,11 @@ jobs:
steps:
- checkout
- run:
- name: "Say hello"
- command: "echo Hello, World!"
+ name: "Build dependencies"
+ command: "bundle install"
+ - run:
+ name: "Build the jekyll site"
+ command: "bundle exec jekyll build"
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
From 8e7d5691b46f73b8359e14215f4baca5f9e3f6da Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Thu, 7 Jul 2022 09:39:28 -0400
Subject: [PATCH 3/7] add validations
---
.circleci/config.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 94a8ad3..279b801 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,8 +15,11 @@ jobs:
steps:
- checkout
- run:
- name: "Say hello"
- command: "echo Hello, World!"
+ name: "Build dependencies"
+ command: "bundle install"
+ - run:
+ name: "Build the jekyll site"
+ command: "bundle exec jekyll build"
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
From 094a0d0ae618082da20deeed2ef46917069aa440 Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Thu, 7 Jul 2022 09:41:00 -0400
Subject: [PATCH 4/7] add validatioms
---
.circleci/config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 279b801..4181f78 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,7 +15,7 @@ jobs:
steps:
- checkout
- run:
- name: "Build dependencies"
+ name: "Build dependencies t"
command: "bundle install"
- run:
name: "Build the jekyll site"
From 1213d67569f13f4e2ae012c3cf25c4075dd8bd86 Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Mon, 11 Jul 2022 14:43:55 -0400
Subject: [PATCH 5/7] Update _config.yml
---
_config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_config.yml b/_config.yml
index c13e288..dea04b5 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,7 +1,7 @@
title: Wired Brain Coffee
logo: "/images/company-logo.png?raw=true"
description: >
- first description
+ High Quality Premium Bean for a slow balanced taste
60 State Street
Suite 800
From 615c172911f5c5347b862c24e8d990fa8334028a Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Mon, 11 Jul 2022 14:54:20 -0400
Subject: [PATCH 6/7] update first description
update frist description
---
_config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_config.yml b/_config.yml
index dea04b5..62e4346 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,7 +1,7 @@
title: Wired Brain Coffee
logo: "/images/company-logo.png?raw=true"
description: >
- High Quality Premium Bean for a slow balanced taste
+ High Quality Premium Bean for a slow balanced taste and aroma.
60 State Street
Suite 800
From 8639559cdf19ca31aa16b5027aee875a11e626a8 Mon Sep 17 00:00:00 2001
From: JorelleK <32558275+JorelleK@users.noreply.github.com>
Date: Mon, 11 Jul 2022 14:57:30 -0400
Subject: [PATCH 7/7] update first description
update first description
---
_config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_config.yml b/_config.yml
index dea04b5..07a80af 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,7 +1,7 @@
title: Wired Brain Coffee
logo: "/images/company-logo.png?raw=true"
description: >
- High Quality Premium Bean for a slow balanced taste
+ High Quality Premium Bean for a slow balanced taste and roma delices.
60 State Street
Suite 800