Skip to content

chore(deps): bump the all group across 1 directory with 8 updates (#24) #8

chore(deps): bump the all group across 1 directory with 8 updates (#24)

chore(deps): bump the all group across 1 directory with 8 updates (#24) #8

Workflow file for this run

name: Deploy Pages
on:
push:
branches:
- main
- master
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs build
- uses: actions/upload-pages-artifact@v5
with:
path: ./site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
timeout-minutes: 10
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5