Skip to content

Commit 38618c0

Browse files
authored
fix(e2e): always archive result artifacts (AutoMQ#1866)
* fix(e2e): always archive result artifacts Signed-off-by: Curtis Wan <wcy9988@163.com> * fix(e2e): remove other setting Signed-off-by: Curtis Wan <wcy9988@163.com> --------- Signed-off-by: Curtis Wan <wcy9988@163.com>
1 parent 96155c1 commit 38618c0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/e2e-run.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
required: false
1616
type: string
1717
outputs:
18-
artifact-id:
18+
artifact-id:
1919
description: "Artifact ID of the test results"
2020
value: ${{ jobs.run_e2e.outputs.artifact-id }}
2121
success-num:
@@ -76,6 +76,7 @@ jobs:
7676
- name: Archive result artifacts
7777
id: archive-artifacts
7878
uses: actions/upload-artifact@v4
79+
if: ${{ always() }}
7980
with:
8081
name: ${{ inputs.suite-id }}
8182
retention-days: 3
@@ -85,4 +86,4 @@ jobs:
8586
- name: Bring down docker containers
8687
run: ./tests/docker/ducker-ak down
8788
shell: bash
88-
if: ${{ always() }}
89+
if: ${{ always() }}

0 commit comments

Comments
 (0)