File tree Expand file tree Collapse file tree 4 files changed +65
-0
lines changed
Expand file tree Collapse file tree 4 files changed +65
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ build
2+ /node_modules /
3+ package.json
4+ package-lock.json
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments