Skip to content

Unify manuscript detail-page titles #18

Unify manuscript detail-page titles

Unify manuscript detail-page titles #18

Workflow file for this run

name: deploy-pages
on:
push:
branches: [main]
paths:
- "docs/**"
- "manuscripts/**"
- "scripts/build_pages_site.sh"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Pages
uses: actions/configure-pages@v5
with:
enablement: true
- name: Build Pages site
run: bash ./scripts/build_pages_site.sh
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: .site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4