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 29f5e14 commit 33e27b4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ jobs:
run: mvn -B package --file pom.xml
- uses: actions/upload-artifact@v3
with:
name: dirigera-client-api
path: dirigera-client-api/target/*.jar
- uses: actions/upload-artifact@v3
with:
name: dirigera-client-dump
path: dirigera-client-dump/target/*.jar
- uses: actions/upload-artifact@v3
with:
name: dirigera-client-mqtt
path: dirigera-client-mqtt/target/*.jar
name: dirigera-client
path: |
**/target/*.jar
10 changes: 10 additions & 0 deletions dirigera-client-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,14 @@
</dependency>
</dependencies>

<build>
<finalName>dirigera-client-examples</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 33e27b4

Please sign in to comment.