forked from deepset-ai/haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (48 loc) · 2.02 KB
/
readme_sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Sync docs with Readme
on:
push:
branches:
- main
# release branches have the form v1.9.x
- 'v[0-9].*[0-9].x'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Set up Python 3.8.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pydoc-markdown==4.5.1
- name: Generate API docs
run: ./.github/utils/pydoc-markdown.sh
- name: Get current version
id: current-version
shell: bash
# We only need `major.minor` in Readme so we cut the full version string to the first two tokens
run: echo "::set-output name=minor::$(cat VERSION.txt | cut -d "." -f 1,2)"
- name: Sync docs with unstable release
# Instead of putting more logic into the previous step, let's just assume that commits on `main`
# will always be synced to the current `X.Y-unstable` version on Readme
id: sync-main
if: github.ref_name == 'main'
uses: readmeio/rdme@8.3.1
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
with:
rdme: docs ./docs/_src/api/api/temp --key="$README_API_KEY" --version=${{ steps.current-version.outputs.minor }}-unstable
- name: Sync docs with current release
# Mutually exclusive with the previous one, this step is supposed to only run on version branches.
# Sync the current Haystack version `X.Y.Z` with its corresponding Readme version `X.Y`.
# See https://docs.github.com/en/actions/learn-github-actions/contexts#steps-context for the condition used
if: steps.sync-main.outcome == 'skipped'
uses: readmeio/rdme@8.3.1
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
with:
rdme: docs ./docs/_src/api/api/temp --key="$README_API_KEY" --version=${{ steps.current-version.outputs.minor }}