From 2de938acd2443a4b46b52c2fa7a859b2cbacf3bb Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 29 Sep 2021 16:37:09 +0930 Subject: [PATCH] chore: use absolute paths for wget? --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e89a0c1b0..2e7ccac68 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -182,7 +182,7 @@ jobs: - name: Pre-download node for nexe shell: bash - run: wget -O ~/.nexe/linux-x64-14.15.3 https://github.com/nexe/nexe/releases/download/v3.3.3/linux-x64-14.15.3 && chmod +x ~/.nexe/linux-x64-14.15.3 + run: wget -O /home/runner/.nexe/linux-x64-14.15.3 -c https://github.com/nexe/nexe/releases/download/v3.3.3/linux-x64-14.15.3 && chmod +x /home/runner/.nexe/linux-x64-14.15.3 - name: Install upx shell: bash @@ -190,7 +190,7 @@ jobs: - name: Reduce size of nexe node shell: bash - run: upx ~/.nexe/linux-x64-14.15.3 + run: upx /home/runner/.nexe/linux-x64-14.15.3 - name: Unpack unraid-api source tgz shell: bash