From 2e4a4dd60d12975a94156da4344246b1e55d311b Mon Sep 17 00:00:00 2001 From: Beraldo Leal Date: Sat, 28 Aug 2021 16:38:59 -0300 Subject: [PATCH] prerelease: fix home dir Looks like GH is not accepting symlinks. Lets give this a try. https://github.com/actions/upload-artifact/issues/93 Signed-off-by: Beraldo Leal --- .github/workflows/prerelease.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 27e8a380b4..bff9a5e5c8 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -91,5 +91,8 @@ jobs: uses: actions/upload-artifact@v2 with: name: avocado-html - path: ~/avocado/job-results/latest/ + path: | + $HOME/avocado/job-results/latest/job.log + $HOME/avocado/job-results/latest/results.* + $HOME/avocado/job-results/latest/test-results/ retention-days: 1