mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Refactor Allure results handling in e2e-testing.yml to simplify artifact merging
This commit is contained in:
parent
d2dc111ab3
commit
8d7df6bba0
1 changed files with 2 additions and 11 deletions
13
.github/workflows/e2e-testing.yml
vendored
13
.github/workflows/e2e-testing.yml
vendored
|
|
@ -324,17 +324,8 @@ jobs:
|
|||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: allure-results-*
|
||||
path: allure-results-downloaded
|
||||
merge-multiple: false
|
||||
|
||||
- name: Merge all results into single directory
|
||||
run: |
|
||||
mkdir -p allure-results
|
||||
for dir in allure-results-downloaded/*/; do
|
||||
if [ -d "$dir" ]; then
|
||||
cp -r "$dir"* allure-results/ 2>/dev/null || true
|
||||
fi
|
||||
done
|
||||
path: allure-results
|
||||
merge-multiple: true
|
||||
|
||||
- name: Generate and Deploy Allure Report
|
||||
uses: simple-elf/allure-report-action@master
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue