Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,23 @@ jobs:
- run: npm install
- run: npm run build

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Setup Ruby via Homebrew
run: |
echo "$(brew --prefix ruby)/bin" >> $GITHUB_PATH
export PATH="$(brew --prefix ruby)/bin:$PATH"
GEM_DIR="$(ruby -e 'puts Gem.user_dir')/bin"
echo "$GEM_DIR" >> $GITHUB_PATH

- name: Install Jekyll dependencies
run: |
export PATH="$(brew --prefix ruby)/bin:$(ruby -e 'puts Gem.user_dir')/bin:$PATH"
gem install bundler --user-install --no-document
bundle install

- name: Build Jekyll site
run: bundle exec jekyll build
run: |
export PATH="$(brew --prefix ruby)/bin:$(ruby -e 'puts Gem.user_dir')/bin:$PATH"
bundle exec jekyll build
env:
JEKYLL_ENV: production

Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
title: TeslApp Content Catalog
description: Community-curated light shows, lock sounds, boombox tracks, wraps, and horn sounds for Tesla vehicles.
baseurl: "/TeslAppBackend"
baseurl: "/Volts"
url: ""

markdown: kramdown
Expand Down
Loading