Skip to content

Commit

Permalink
Create jekyll.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Beikewzh authored Nov 8, 2024
1 parent 92d57ac commit a2a566d
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Workflow to build and deploy a Jekyll site to GitHub Pages
name: Deploy Jekyll site to Pages

on:
# Trigger workflow on pushes to the main branch
push:
branches: ["main"]

# Allow manual workflow triggers
workflow_dispatch:

# Permissions for GitHub Pages deployment
permissions:
contents: read
pages: write
id-token: write

# Concurrency settings to prevent overlapping runs
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Job to build the Jekyll site
build:
runs-on: ubuntu-latest

steps:
# Step 1: Checkout repository code
- name: Checkout
uses: actions/checkout@v4

# Step 2: Set up Ruby environment
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Adjust to match your local Ruby version
bundler-cache: true # Automatically runs 'bundle install' and caches gems

# Step 3: Set up GitHub Pages
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5

# Step 4: Build the Jekyll site
- name: Build with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production

# Step 5: Upload the built site as an artifact
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Job to deploy the built site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build

steps:
# Step 6: Deploy the site to GitHub Pages
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit a2a566d

Please sign in to comment.