Skip to content

Commit abb0efc

Browse files
committed
Workflow: Added workflow main
1 parent 12ae757 commit abb0efc

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/main.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- "main"
6+
- "versions/*"
7+
tags:
8+
- "v*"
9+
pull_request:
10+
11+
concurrency:
12+
group: ${{ github.head_ref || github.run_id }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
mkdocs-release:
17+
# Release documentation on version tag, but ignore pre-releases
18+
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-')
19+
uses: ./.github/workflows/mkdocs.yml

0 commit comments

Comments
 (0)