Skip to content

Commit

Permalink
add github action for jekyll build
Browse files Browse the repository at this point in the history
  • Loading branch information
poxrud committed Aug 28, 2023
1 parent ecfe019 commit 023bda5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build site for Deployment to blog.oxrud.com

on:
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- name: Setup Ruby and install gem dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true

- name: Build site
run: jekyll build

0 comments on commit 023bda5

Please sign in to comment.