From 429513f337d008c23182e6ab7b52525ea036b8a0 Mon Sep 17 00:00:00 2001 From: James Maes Date: Sat, 6 Jul 2024 08:00:37 -0500 Subject: [PATCH] Add composite action store_jacoco_site --- .github/actions/store_jacoco_site/action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/actions/store_jacoco_site/action.yml diff --git a/.github/actions/store_jacoco_site/action.yml b/.github/actions/store_jacoco_site/action.yml new file mode 100644 index 00000000..3dbe2345 --- /dev/null +++ b/.github/actions/store_jacoco_site/action.yml @@ -0,0 +1,13 @@ +name: store_jacoco_site +inputs: + module: + required: false +runs: + using: composite + steps: + - uses: actions/upload-artifact@v4.1.0 + with: + path: "${{ inputs.module }}/target/site/jacoco/index.html" + - uses: actions/upload-artifact@v4.1.0 + with: + path: "${{ inputs.module }}/target/site/jacoco/jacoco-resources" \ No newline at end of file