Skip to content

Commit

Permalink
build java applications
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernesto Gutierrez committed Apr 19, 2023
1 parent ebbc476 commit 7485fa9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
tags:
- 'v*' # push events to matching v*, i.e. v1.0, v20.15.10

name: Add conky release zip to the release
name: Add conky zip to the release

jobs:
build:
Expand All @@ -13,7 +13,13 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project
- name: Build java applications
run: |
cd builder/java-tools
mvn clean package
mkdir -p ${GITHUB_WORKSPACE}/java
cp -rn */target/{lib,*.jar,*.yaml,*.xml} ${GITHUB_WORKSPACE}/java
- name: Create archive
run: |
shopt -s extglob
echo ':::: adding the files:'
Expand Down

0 comments on commit 7485fa9

Please sign in to comment.