We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c8219 commit 6591456Copy full SHA for 6591456
1 file changed
.github/workflows/maven-release.yml
@@ -0,0 +1,18 @@
1
+name: Maven Release Package Deployment
2
+
3
+on: [release]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Set up JDK 1.8_x86
13
+ uses: actions/setup-java@v1
14
+ with:
15
+ java-version: 1.8
16
+ architecture: x86
17
+ - name: Build & Deploy with Maven
18
+ run: mvn -B deploy --file pom.xml -Dregistry=https://maven.pkg.github.com/Enfernuz -Dtoken=GH_TOKEN
0 commit comments