Skip to content

Commit

Permalink
added
Browse files Browse the repository at this point in the history
  • Loading branch information
Arpit529Srivastava committed Nov 29, 2024
1 parent 403090d commit 8bb3464
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/.github/workflow/jekyll-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Jekyll site

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Install dependencies
run: bundle install
- name: Build Jekyll site
run: bundle exec jekyll build --source ./public --destination ./public/_site

0 comments on commit 8bb3464

Please sign in to comment.