Skip to content

Commit 23b463a

Browse files
committed
Add Play SOAP docs
1 parent 1a86cc8 commit 23b463a

File tree

4 files changed

+65
-0
lines changed

4 files changed

+65
-0
lines changed

.github/workflows/build-test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Check
2+
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- main # Check branch after merge
9+
10+
concurrency:
11+
# Only run once for latest commit per ref and cancel other (previous) runs.
12+
group: ci-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
check-docs:
17+
name: Docs
18+
uses: playframework/.github/.github/workflows/antora.yml@v3
19+
with:
20+
playbook: antora-playbook.yml
21+
22+
finish:
23+
name: Finish
24+
if: github.event_name == 'pull_request'
25+
needs: # Should be last
26+
- "check-docs"
27+
uses: playframework/.github/.github/workflows/rtm.yml@v3

.github/workflows/publish.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
- cron: '0 3 * * *' # Daily at 03:00
9+
10+
jobs:
11+
publish-docs:
12+
name: Publish / Docs
13+
uses: playframework/.github/.github/workflows/antora.yml@v3
14+
with:
15+
playbook: antora-playbook.yml
16+
publish: true

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build
2+
/node_modules/
3+
package.json
4+
package-lock.json

antora-playbook.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
site:
2+
title: Playframework
3+
# the 404 page and sitemap files only get generated when the url property is set
4+
url: https://playframework.github.io/
5+
start_page: play-soap::index.adoc
6+
7+
content:
8+
sources:
9+
- url: https://github.com/playframework/play-soap.git
10+
branches:
11+
- 1.x
12+
- main
13+
start_path: docs
14+
15+
ui:
16+
bundle:
17+
url: https://github.com/playframework/play-antora-ui/releases/latest/download/ui-bundle.zip
18+
snapshot: true

0 commit comments

Comments
 (0)