File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Generate Documentation
2+ on :
3+ push :
4+ branches : [ main ]
5+ pull_request :
6+ branches : [ main ]
7+ types : [opened, synchronize, reopened]
8+
9+ jobs :
10+ documentation :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v4
15+ with :
16+ fetch-depth : 0 # Required to access branch history
17+
18+ - name : Generate Documentation
19+ uses : codeboarding/codeboarding-ghaction@v1
20+ with :
21+ repository_url : ${{ github.server_url }}/${{ github.repository }}
22+ source_branch : ${{ github.head_ref || github.ref_name }}
23+ target_branch : ${{ github.base_ref || 'main' }}
24+ output_directory : ' docs'
25+ output_format : ' .md'
26+
27+ - name : Upload Documentation
28+ uses : actions/upload-artifact@v4
29+ with :
30+ name : documentation
31+ path : |
32+ doc/.codeboarding/
Original file line number Diff line number Diff line change 1515#
1616# Automatically generated by `tasks.py`.
1717
18- VERSION = 'v2.1.5 '
18+ VERSION = 'v2.2dev37 '
You can’t perform that action at this time.
0 commit comments