Skip to content

Commit 63a5bb8

Browse files
Development version and CodeBoarding Generate action
1 parent 98d085e commit 63a5bb8

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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/

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616
# Automatically generated by `tasks.py`.
1717

18-
VERSION = 'v2.1.5'
18+
VERSION = 'v2.2dev37'

0 commit comments

Comments
 (0)