Skip to content

fix: pin k6 version to v0.52.0 #3

fix: pin k6 version to v0.52.0

fix: pin k6 version to v0.52.0 #3

Workflow file for this run

name: docs
on:
workflow_dispatch:
push:
branches: [main]
jobs:
docs:
name: docs
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Generate API doc
run: |
pip install -r docs/requirements.txt
sphinx-build -b html docs build/docs
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "build/docs"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4