We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c16df4 commit 9e53044Copy full SHA for 9e53044
.github/workflows/check-release.yml
@@ -0,0 +1,28 @@
1
+name: "Check release"
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - v*
7
8
+permissions: read-all
9
10
+jobs:
11
+ build:
12
+ name: Maven build
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+ - name: Setup Java JDK
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ distribution: 'zulu'
21
+ java-version: '11'
22
+ - name: Build with Maven
23
+ env:
24
+ SIGN_KEY: ${{ secrets.SIGN_KEY }}
25
+ SIGN_KEY_PASS: ${{ secrets.SIGN_KEY_PASS }}
26
+ run: |
27
+ ./mvnw --batch-mode -s .mvn/ci_settings.xml -ntp -DskipTests -DskipPublishing -Prelease
28
+ ./mvnw license:check-file-header -Dlicense.failOnMissingHeader=true -Pprepare-and-check
0 commit comments