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.
2 parents 6fdee20 + d9a1845 commit 21bbcdeCopy full SHA for 21bbcde
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+name: Build plugin release
2
+on:
3
+ push:
4
+ branches: ["release"]
5
+
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Set up JDK 22
14
+ uses: actions/setup-java@v4
15
+ with:
16
+ java-version: '22'
17
+ distribution: 'zulu'
18
+ cache: maven
19
+ - name: Build Application
20
+ run: mvn install ./authorizer
0 commit comments