Skip to content

Update website, Dolphin renamed "beta" to "release" #10

Update website, Dolphin renamed "beta" to "release"

Update website, Dolphin renamed "beta" to "release" #10

Workflow file for this run

name: Publish Website
on:
push:
branches: [ master ]
paths:
- 'docs/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skip in-between runs, and don't cancel runs in progress.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
cache: 'pip'
- run: pip install mkdocs-material mkdocs-macros-plugin
- run: mkdocs build --config-file mkdocs-gh-pages.yml
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2