Skip to content

d

d #13

Workflow file for this run

name: Deploy Jekyll site to Pages
on:
push:
branches: [ master ]
workflow_dispatch:
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
# If you have .ruby-version, it will be used automatically.
- name: Install gems
run: bundle install --no-deployment
- name: Build site
run: bundle exec jekyll build --trace
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: _site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4