From 495f0ec6597ee7d892efd855592be7dbf19ead1b Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Sat, 2 Apr 2022 10:09:49 +0700 Subject: [PATCH] CI build: attach main artifacts to build Relates to #150. Signed-off-by: Alexander Kriegisch --- .github/workflows/maven.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index d440eaf90..f731a47ee 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -55,6 +55,33 @@ jobs: # Also install (not just package) for subsequent build steps run: ./mvnw -B --file pom.xml -DskipTests install + - name: Attach aspectjrt to build + uses: actions/upload-artifact@v3 + with: + name: aspectjrt-java${{ matrix.java }} + # Binary, source, javadoc JARs + flattened POM + path: | + aspectjrt/target/aspectjrt-*.jar + aspectjrt/target/flattened-pom.xml + + - name: Attach aspectjweaver to build + uses: actions/upload-artifact@v3 + with: + name: aspectjweaver-java${{ matrix.java }} + # Binary, source, javadoc JARs + flattened POM + path: | + aspectjweaver/target/aspectjweaver-*.jar + aspectjweaver/target/flattened-pom.xml + + - name: Attach aspectjtools to build + uses: actions/upload-artifact@v3 + with: + name: aspectjtools-java${{ matrix.java }} + # Binary, source, javadoc JARs + flattened POM + path: | + aspectjtools/target/aspectjtools-*.jar + aspectjtools/target/flattened-pom.xml + - name: Create docs run: ./mvnw -B --file pom.xml -DskipTests process-resources -pl docs -P create-docs -- 2.39.5