Skip to content

Update publications.html #6

Update publications.html

Update publications.html #6

Workflow file for this run

name: Build and Deploy Jekyll Site
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repo
- uses: actions/checkout@v4
# Step 2: Setup Ruby
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
# Step 3: Install bundler and gems
- run: gem install bundler
- run: bundle install
# Step 4: Build the site
- run: bundle exec jekyll build --destination ./_site
# Step 5: Deploy to GitHub Pages
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: ./_site
- uses: actions/deploy-pages@v4