Skip to content

[FEATURE] Handling compact data representations for all connectors with minimum configurations #81

[FEATURE] Handling compact data representations for all connectors with minimum configurations

[FEATURE] Handling compact data representations for all connectors with minimum configurations #81

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Docs Deployment
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Add permissions for GitHub Pages deployment
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: false
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-and-upload:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
# Runs a single command using the runners shell
- name: Install dependencies
run: |
pip install -r ./docs/requirements_docs.txt
- name: Build docs
run: sphinx-build -b html ./docs/ ./docs/_build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/_build
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-and-upload
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4