Skip to content

Refine Stage285 verification page to match Stage280 layout #4

Refine Stage285 verification page to match Stage280 layout

Refine Stage285 verification page to match Stage280 layout #4

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build decision
run: |
python3 tools/build_stage284_decision.py
- name: Prepare site
run: |
mkdir -p _site
cp index.html _site/index.html
mkdir -p _site/out/decision
cp out/decision/decision.json _site/out/decision/decision.json
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: _site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4