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 69e99f1 commit 8a56dc9Copy full SHA for 8a56dc9
.github/workflows/maven-deploy.yml
@@ -0,0 +1,16 @@
1
+name: Maven Deploy
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v2
8
+ - name: Set up JDK 1.8
9
+ uses: actions/setup-java@v1
10
+ with:
11
+ java-version: 1.8
12
+ settings-path: ${{ github.workspace }}/build
13
+ - name: Build
14
+ run: mvn -B package --file pom.xml
15
+ - name: Deploy to JavaWebStack Repository
16
+ run: mvn deploy
0 commit comments