Skip to content

Commit c508744

Browse files
github: always upload test log
When previous CI steps fail, the test log upload step will be skipped. Change the condition to always run. Fixes: e9988db (github: upload test log as an artifact) Signed-off-by: Khang D Nguyen <khangng@os.amperecomputing.com>
1 parent 76e31c4 commit c508744

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: meson test -C build --verbose
3131

3232
- uses: actions/upload-artifact@v4
33+
if: always()
3334
with:
3435
name: default-meson-testlog
3536
path: build/meson-logs/testlog.txt
@@ -60,6 +61,7 @@ jobs:
6061
run: meson test -C build --verbose
6162

6263
- uses: actions/upload-artifact@v4
64+
if: always()
6365
with:
6466
name: no-libsystemd-meson-testlog
6567
path: build/meson-logs/testlog.txt

0 commit comments

Comments
 (0)