Skip to content

Merge pull request #60 from YubeenKim/feat/nar_paper #163

Merge pull request #60 from YubeenKim/feat/nar_paper

Merge pull request #60 from YubeenKim/feat/nar_paper #163

Workflow file for this run

name: Github Pages
on:
workflow_dispatch:
push:
branches:
- master
defaults:
run:
shell: bash
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- run: bundle exec jekyll build -b ${{ steps.pages.outputs.base_path }}/
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4