From e27a5b82aead0e616d3ed0a14558aeac77cc9fdf Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 13 Feb 2024 18:19:20 +0000 Subject: [PATCH] don't use root directory --- .forgejo/workflows/actions.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/actions.yaml b/.forgejo/workflows/actions.yaml index 3a438f5..c67fa14 100644 --- a/.forgejo/workflows/actions.yaml +++ b/.forgejo/workflows/actions.yaml @@ -54,12 +54,12 @@ jobs: - name: Copy export files run: | - cp -vrpT ./build/atlauncher ~/export/atlauncher - cp -vp ./unsup.ini ~/export/atlauncher/.minecraft/ + cp -vrT ./build/atlauncher /export/atlauncher + cp -vp ./unsup.ini /export/atlauncher/.minecraft/ - mkdir -vp ~/export/prism/.minecraft - cp -vrT ./build/prism ~/export/prism - cp -v ./unsup.ini ~/export/prism/.minecraft/ + mkdir -vp /export/prism/.minecraft + cp -vrT ./build/prism /export/prism + cp -v ./unsup.ini /export/prism/.minecraft/ - name: Upload ATLauncher export artifact uses: actions/upload-artifact@v3