We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a05baa commit 993de0bCopy full SHA for 993de0b
1 file changed
.github/workflows/build.yml
@@ -10,7 +10,15 @@ on:
10
11
jobs:
12
build:
13
- uses: ResilientGroup/MavenSetup/.github/workflows/build.yml@1.9.0
14
- with:
15
- javadoc-project-name: PowerCamera
16
- secrets: inherit
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
17
+ - name: Set up JDK 21
18
+ uses: actions/setup-java@v3
19
+ with:
20
+ java-version: '21'
21
+ distribution: 'temurin'
22
+ cache: maven
23
+ - name: Build with Maven
24
+ run: mvn -B package --file pom.xml
0 commit comments