There was an error while loading. Please reload this page.
1 parent c2aa96f commit 14518b2Copy full SHA for 14518b2
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,23 @@
1
+# This workflow will build a package using Maven and then publish it to Maven central when a release is created
2
+# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
3
+
4
+name: release
5
6
+on:
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ packages: write
15
+ releases: write
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - name: Set up JDK
20
+ uses: actions/setup-java@v3
21
+ with:
22
+ java-version: '17'
23
+ distribution: 'temurin'
0 commit comments