Skip to content

Commit

Permalink
things
Browse files Browse the repository at this point in the history
devksingh4 committed Jan 23, 2024
1 parent 5aca4a5 commit 198fd10
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -33,19 +33,24 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup Ruby
uses: ruby/setup-ruby@v1 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Install
run: make install
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
run: make build
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3

0 comments on commit 198fd10

Please sign in to comment.