chore: use absolute paths for wget?

This commit is contained in:
Alexis
2021-09-29 16:37:09 +09:30
parent e9e0ebb63d
commit 2de938acd2

View File

@@ -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