File tree Expand file tree Collapse file tree 7 files changed +757
-115
lines changed Expand file tree Collapse file tree 7 files changed +757
-115
lines changed Original file line number Diff line number Diff line change 1
- name : ci
1
+ name : ci
2
2
on :
3
3
push :
4
- branches :
4
+ branches :
5
5
- master
6
6
- main
7
7
workflow_run :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v4
15
- - uses : actions/setup-python@v4
16
- with :
17
- python-version : 3.x
18
- - run : pip install mkdocs-material mkdocs-minify-plugin
19
- - run : mkdocs gh-deploy --force --no-strict
15
+ - uses : prefix-dev/setup-pixi@v0.8.3
16
+ - run : pixi run mkdocs gh-deploy --force --no-strict
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
13
- - uses : prefix-dev/setup-pixi@v0.8.1
13
+ - uses : prefix-dev/setup-pixi@v0.8.3
14
14
- env :
15
15
ANACONDA_API_TOKEN : ${{ secrets.ROBOSTACK_NOETIC_ANACONDA_API_TOKEN }}
16
16
run : |
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- uses : actions/checkout@v4
24
- - uses : prefix-dev/setup-pixi@v0.8.1
24
+ - uses : prefix-dev/setup-pixi@v0.8.3
25
25
- env :
26
26
ANACONDA_API_TOKEN : ${{ secrets.ROBOSTACK_HUMBLE_ANACONDA_API_TOKEN }}
27
27
run : |
Original file line number Diff line number Diff line change 1
1
name : Update distro tables
2
2
3
3
on :
4
- schedule :
4
+ schedule :
5
5
- cron : " 0 */6 * * *"
6
6
workflow_dispatch :
7
7
@@ -10,30 +10,24 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
if : github.ref == 'refs/heads/master'
12
12
steps :
13
- - name : Set up Python
14
- uses : actions/setup-python@v5
15
- with :
16
- python-version : ' 3.11'
17
- - name : Install dependencies
18
- run : |
19
- pip install pyyaml requests
20
13
- name : Checkout robostack.github.io
21
14
uses : actions/checkout@v4
15
+ - uses : prefix-dev/setup-pixi@v0.8.3
22
16
- name : Create table noetic
23
17
run : |
24
- python utils/compare_pkg_completeness.py noetic robostack-staging
18
+ pixi run compare-completeness noetic robostack-staging
25
19
- name : Create table foxy
26
20
run : |
27
- python utils/compare_pkg_completeness.py foxy robostack
21
+ pixi run compare-completeness foxy robostack
28
22
- name : Create table galactic
29
23
run : |
30
- python utils/compare_pkg_completeness.py galactic robostack-experimental
24
+ pixi run compare-completeness galactic robostack-experimental
31
25
- name : Create table humble
32
26
run : |
33
- python utils/compare_pkg_completeness.py humble robostack-staging
27
+ pixi run compare-completeness humble robostack-staging
34
28
- name : Create table jazzy
35
29
run : |
36
- python utils/compare_pkg_completeness.py jazzy robostack-jazzy
30
+ pixi run compare-completeness jazzy robostack-jazzy
37
31
- name : Commit changes
38
32
id : commit
39
33
run : |
Original file line number Diff line number Diff line change 3
3
Source files for the [ robostack.github.io] ( https://robostack.github.io/ ) documentation website.
4
4
5
5
# Run it locally
6
- Install requirements
7
- ``` bash
8
- micromamba create -f environment.yml
9
6
```
10
- Run local server
11
- ``` bash
12
- micromamba run -n robostack-docs-env mkdocs serve
7
+ pixi run serve
13
8
```
14
9
Open server on http://127.0.0.1:8000/
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ markdown_extensions:
38
38
- admonition
39
39
- attr_list
40
40
- pymdownx.tabbed :
41
- alternate_style : true
42
- - pymdownx.emoji :
43
- emoji_index : !!python/name:materialx .emoji.twemoji
44
- emoji_generator : !!python/name:materialx .emoji.to_svg
41
+ alternate_style : true
42
+ - pymdownx.emoji :
43
+ emoji_index : !!python/name:material.extensions .emoji.twemoji
44
+ emoji_generator : !!python/name:material.extensions .emoji.to_svg
45
45
46
46
use_directory_urls : false
47
47
strict : true
You can’t perform that action at this time.
0 commit comments