Skip to content

build(deps): bump codecov/codecov-action from 4 to 5 (#331) #294

build(deps): bump codecov/codecov-action from 4 to 5 (#331)

build(deps): bump codecov/codecov-action from 4 to 5 (#331) #294

Workflow file for this run

name: docs
on:
push:
branches: ["main"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- name: Install Hatch
run: |
pipx install hatch==1.9.3
- name: Build Docs
run: |
hatch run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/_build/html'
deploy:
needs: build
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