Skip to content

build(deps): bump @sentry/profiling-node from 8.27.0 to 8.30.0 (#74) #11

build(deps): bump @sentry/profiling-node from 8.27.0 to 8.30.0 (#74)

build(deps): bump @sentry/profiling-node from 8.27.0 to 8.30.0 (#74) #11

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build MkDocs site
run: mkdocs build --config-file docs/mkdocs.yml
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}