-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
steps: | ||
|
||
- label: ":md: Publish test blog" | ||
branches: !master | ||
command: | ||
- "echo 'baseurl: \"/jekyll-theme-guardian/${BUILDKITE_BUILD_NUMBER}/_site\"' >> _config_test.yml" | ||
- "bundle install" | ||
- "bundle exec jekyll build --drafts --config _config.yml,_config_test.yml" | ||
agents: | ||
queue: builder | ||
artifact_paths: "_site/**/*" | ||
plugins: | ||
- docker#v3.5.0: | ||
image: "ruby:2.6.3" | ||
always-pull: true | ||
|
||
- wait | ||
|
||
- label: ":console: Annotate test blog link" | ||
command: | | ||
cat << EOF | buildkite-agent annotate --style "success" | ||
<p class="h1"><a href="artifact://_site/index.html">View Test Blog</a></p> | ||
EOF | ||
agents: | ||
queue: builder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
_site | ||
_posts | ||
.sass-cache | ||
.jekyll-metadata | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# overrides for test deploy | ||
url: https://buildkite.yden.us | ||
guardian: | ||
tracking: | ||
google_analytics_code: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: post | ||
title: "Hello World!" | ||
date: 2020-07-13 12:37:44 -0500 | ||
categories: news | ||
author: Dan Beghin | ||
--- | ||
This is a test blog post for jekyll-theme-guardian. |