1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 02:10:53 +00:00

Update ci.yml

Add another artefact, with only the plantuml.jar 
See:
https://github.com/plantuml/plantuml/discussions/653#discussioncomment-1631002
This commit is contained in:
The-Lum 2021-11-12 15:59:02 +01:00 committed by GitHub
parent 8db6bef1cd
commit 3e9ea863ce
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'