We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8dbfb commit 2453d5dCopy full SHA for 2453d5d
1 file changed
.github/workflows/maven.yml
@@ -1,6 +1,8 @@
1
name: Java CI with Maven
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ branches: ['master', 'develop']
6
7
jobs:
8
build:
@@ -20,6 +22,11 @@ jobs:
20
22
- name: Build with Maven - From Pom
21
23
run: mvn -B package --file pom.xml
24
25
+ - name: Upload build artifacts
26
+ uses: actions/upload-artifact@v3.1.2
27
+ with:
28
+ name: my-artifacts
29
+ path: target/*.jar
30
31
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
32
- name: Update dependency graph
0 commit comments