From 3e9ea863ce92dcec8068c11eb473f718d3a1315a Mon Sep 17 00:00:00 2001 From: The-Lum <86879521+The-Lum@users.noreply.github.com> Date: Fri, 12 Nov 2021 15:59:02 +0100 Subject: [PATCH] Update ci.yml Add another artefact, with only the plantuml.jar See: https://github.com/plantuml/plantuml/discussions/653#discussioncomment-1631002 --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ca3f3269..37111d965 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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'