Skip to content

Enrich math-education concept page: 10 articles, 5 research themes, 2… #63

Enrich math-education concept page: 10 articles, 5 research themes, 2…

Enrich math-education concept page: 10 articles, 5 research themes, 2… #63

Workflow file for this run

name: Deploy Astro to Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-astro
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx astro build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v4
with:
path: dist
- id: deploy
uses: actions/deploy-pages@v4