Skip to content

Commit d3f9599

Browse files
authoredApr 10, 2024
[FSTORE-1346] Fixing workflow for docs release (#364) (#365)
* Fixing workflow for docs release * Fixing workflow for doc release test also
1 parent 791a2ed commit d3f9599

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎.github/workflows/mkdocs-release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ name: mkdocs-release
22

33
on:
44
push:
5-
branches: [ branch-* ]
5+
branches: [branch-*]
66

77
jobs:
88
publish-release:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515

16-
- uses: actions/setup-python@v2
16+
- uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.8'
18+
python-version: "3.10"
1919

2020
- name: Install ubuntu dependencies
2121
run: sudo apt-get install -y libxml2-dev libxslt-dev
2222

2323
- name: install deps
24-
run: pip3 install pip==22.0.3 && pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python' mkdocs-minify-plugin
24+
run: pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python'
2525

2626
- name: setup git
2727
run: |

‎.github/workflows/mkdocs-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88

99
steps:
1010
- name: Checkout main repo
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0
1414

15-
- uses: actions/setup-python@v2
15+
- uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.8'
17+
python-version: "3.10"
1818

1919
- name: Install ubuntu dependencies
2020
run: sudo apt-get install -y libxml2-dev libxslt-dev
2121

2222
- name: install deps
23-
run: pip3 install pip==22.0.3 && pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python' mkdocs-minify-plugin linkchecker
23+
run: pip3 install 'git+https://github.com/logicalclocks/feature-store-api@master#egg=hsfs[docs]&subdirectory=python' linkchecker
2424

2525
- name: setup git
2626
run: |

0 commit comments

Comments
 (0)