Skip to content

Commit

Permalink
add github action to upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdgeisler committed Nov 25, 2022
1 parent 233ce8d commit a3501b8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Java CI with Maven

on:
push:
branches: [ "main", "develop" ]
branches: [ "main", "develop", "feature/github-actions"]
pull_request:
branches: [ "main", "develop" ]

Expand All @@ -28,4 +28,11 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
run: mvn -B package --file pom.xml
- uses: actions/upload-artifact@v3
with:
name: dirigera-client-api
path: |
dirigera-client-api/target/*.jar
dirigera-client-dump/target/*.jar
dirigera-client-mqtt/target/*.jar

0 comments on commit a3501b8

Please sign in to comment.