-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (31 loc) · 1015 Bytes
/
head_2.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
on:
push:
branches:
- '**'
tags:
- 'NEVER'
pull_request:
types: [opened, reopened]
env:
APT: sudo apt install -y --no-install-recommends
# Set the python path manually to include /usr/-/python2.7/dist-packages
# as this is where apt-get installs python packages.
ROSINSTALL_FILE: $GITHUB_WORKSPACE/dependencies.rosinstall
CATKIN_OPTIONS: $GITHUB_WORKSPACE/catkin.options
jobs:
gh_pages:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- run: $APT doxygen
- run: git submodule update --init
- run: git config --global user.name 'Github Action'
- run: git config --global user.email '[email protected]'
- run: make dox
- run: |
cd doc/dox
git add *
git commit -a -m "Automated update"
git push