Skip to content

Fix post ordering: sort by date and simplify categories (#7) #20

Fix post ordering: sort by date and simplify categories (#7)

Fix post ordering: sort by date and simplify categories (#7) #20

Workflow file for this run

name: Deploy Jekyll Blog
on:
push:
branches: ["main"]
paths:
- 'blogs/**'
- '.github/workflows/jekyll.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Create Gemfile
run: |
cd blogs
cat > Gemfile << 'EOF'
source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins
gem "jekyll-remote-theme"
EOF
- name: Install dependencies
run: |
cd blogs
bundle install
- name: Build with Jekyll
run: |
cd blogs
bundle exec jekyll build --destination ../_site
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4