Skip to content

Rename package to EchoTime for 0.17.0 beta #21

Rename package to EchoTime for 0.17.0 beta

Rename package to EchoTime for 0.17.0 beta #21

Workflow file for this run

name: pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install EchoTime
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Regenerate docs bundle
run: |
echotime --export-pages docs
- name: Audit demo/doc versions
run: |
python -m echotime.cli --guide asset-audit --guide-format markdown
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4