File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build and Ensure Confluence startup
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Set up JDK 17
17+ uses : actions/setup-java@v4
18+ with :
19+ java-version : ' 17'
20+ distribution : ' temurin'
21+ cache : maven
22+ - name : Build with Maven
23+ run : mvn -B package --file pom.xml
24+
25+ # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
26+ - name : Update dependency graph
27+ uses : advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
28+
29+ start-confluence :
30+ runs-on : ubuntu-latest
31+
32+ steps :
33+ - uses : actions/checkout@v4
34+ - name : Set up JDK 17
35+ uses : actions/setup-java@v4
36+ with :
37+ java-version : ' 17'
38+ distribution : ' temurin'
39+ cache : maven
40+ - name : Start Confluence
41+ run : (while true; do sleep 10000; done) | mvn confluence:debug &
42+
You can’t perform that action at this time.
0 commit comments