Skip to content

content: extend MOOSE2026 deadline to 10th June 2026 #189

content: extend MOOSE2026 deadline to 10th June 2026

content: extend MOOSE2026 deadline to 10th June 2026 #189

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
permissions:
contents: read
pages: write
id-token: write
jobs:
build-site:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build and upload site
uses: withastro/action@v6
with:
path: .
node-version: 24
package-manager: npm
deploy:
if: github.repository == 'MooseNeuro/mooseneuro.github.io'
needs: build-site
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4