Skip to content

Update aods.md

Update aods.md #8

Workflow file for this run

# Workflow to build and deploy to your GitHub Pages repo.
name: Github Pages Astro CI
on:
# Triggers the workflow on push to the main branch
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Build static site files
run: |
npm run build
touch ./dist/.nojekyll
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: dist/
deploy:
needs: build
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4