Skip to content

Merge pull request #34 from UiPath/feat/vectorstore #4

Merge pull request #34 from UiPath/feat/vectorstore

Merge pull request #34 from UiPath/feat/vectorstore #4

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "pyproject.toml"
jobs:
publish-docs:
runs-on: ubuntu-latest
if: ${{ github.repository == 'UiPath/uipath-llamaindex-python' }}
steps:
- name: Trigger Publish Docs
run: |
repo_owner="uipath"
repo_name="uipath-python"
event_type="publish-docs"
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.REPO_ACCESS }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/$repo_owner/$repo_name/dispatches \
-d "{\"event_type\": \"$event_type\", \"client_payload\": {}}"