Skip to content

feat: 설명 추가 - 2026-02-24-diary.md #298

feat: 설명 추가 - 2026-02-24-diary.md

feat: 설명 추가 - 2026-02-24-diary.md #298

Workflow file for this run

name: Jekyll Build and Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0' # 필요시 버전 조정
- run: bundle install
- name: Update menu post counts
run: ruby scripts/update_menu_counts.rb
- run: bundle exec jekyll build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./_site