Skip to content

Commit

Permalink
configure jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruv-anand-aintech committed May 17, 2024
1 parent 787f440 commit 3c01dce
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,23 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
# Upload entire repository
path: '.'
ruby-version: 2.7

- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Build site
run: bundle exec jekyll build

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'jekyll', '~> 4.2.0'
gem 'minima', '~> 2.5'
13 changes: 13 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
title: Vector-io
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
Vector-io: This library uses a universal format for vector datasets to easily export and import data from all vector databases.
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: dhruv___anand
github_username: dhruv-anand-aintech

# Build settings
theme: minima
plugins:
- jekyll-feed

0 comments on commit 3c01dce

Please sign in to comment.