Skip to content

Commit 79c8647

Browse files
authored
Merge pull request #32 from j031/fat-turkey-festival-post
FLVR NA Beer
2 parents 220b819 + 4142cd7 commit 79c8647

35 files changed

Lines changed: 146 additions & 0 deletions

.agent

Submodule .agent added at cd1c96a

.agent-config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Agent Workspace Configuration for tastebud.studio
2+
3+
site:
4+
name: "tastebud.studio"
5+
url: "https://www.tastebud.studio"
6+
author: "Joel Taylor"
7+
timezone: "America/Chicago"
8+
9+
blog:
10+
posts_dir: "docs/_posts"
11+
drafts_dir: "docs/_drafts"
12+
categories:
13+
- "Food & Flavor"
14+
- "Travel"
15+
- "Recipes"
16+
- "Product Management"
17+
- "Technology"
18+
default_tags:
19+
- "food"
20+
- "flavor"
21+
- "adventure"
22+
23+
pages:
24+
pages_dir: "docs/_pages"
25+
26+
git:
27+
main_branch: "main"

.github/workflows/pages.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2+
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Build job
26+
build:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
- name: Build with Jekyll
34+
uses: actions/jekyll-build-pages@v1
35+
with:
36+
source: ./docs
37+
destination: ./_site
38+
- name: Upload artifact
39+
uses: actions/upload-pages-artifact@v3
40+
41+
# Deployment job
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v4

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule ".agent"]
2+
path = .agent
3+
url = https://github.com/taylor-consulting/github-pages-agent-workspace-shared
File renamed without changes.

docs/Gemfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.3.2"
4+
gem "minimal-mistakes-jekyll"
5+
gem "jekyll-include-cache"
6+
gem "webrick" # Required for Ruby 3.x+
7+
8+
group :jekyll_plugins do
9+
gem "jekyll-feed"
10+
gem "jekyll-gist"
11+
gem "jekyll-paginate"
12+
gem "jekyll-sitemap"
13+
gem "jemoji"
14+
gem "jekyll-remote-theme"
15+
end
File renamed without changes.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Fat Turkey Festival: 2nd Annual"
3+
date: "2025-11-28"
4+
tags: Beer Festival Pairing Vertical
5+
layout: posts
6+
excerpt: ""
7+
---
8+

0 commit comments

Comments
 (0)