浏览代码

CI build: attach main artifacts to build

Relates to #150.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_19
Alexander Kriegisch 2 年前
父节点
当前提交
495f0ec659
共有 1 个文件被更改,包括 27 次插入0 次删除
  1. 27
    0
      .github/workflows/maven.yml

+ 27
- 0
.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


正在加载...
取消
保存