Skip to content

fix: update homepage; add LUNA link #24

fix: update homepage; add LUNA link

fix: update homepage; add LUNA link #24

Workflow file for this run

name: Deploy to Pages
on:
push:
branches: [main]
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- run: npm ci
- run: npm run build
- run: bundle exec jekyll build
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v2
with:
path: ./_site/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v2