1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-12-22 10:59:01 +00:00

Merge pull request #764 from The-Lum/updateCI

Add a new artefact containing single jar
This commit is contained in:
arnaudroques 2021-11-12 16:07:44 +01:00 committed by GitHub
commit c85448fc0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,6 +110,16 @@ jobs:
name: ${{ github.run_number }}-jars
path: target/*.jar
- name: Upload jar artifact (only simple jar - without javadoc or sources)
if: ${{ matrix.release_from_this_build }}
uses: actions/upload-artifact@v2
with:
name: plantuml-jar
path: |
target/*.jar
!target/*-javadoc.jar
!target/*-sources.jar
release:
needs: [ workflow_config, build ]
if: needs.workflow_config.outputs.do_release == 'true'