From a20028c336a50cfd97a14f7924f9237a8402b22c Mon Sep 17 00:00:00 2001 From: Cj-bc Date: Fri, 20 Aug 2021 00:48:04 +0900 Subject: [PATCH] Fix: actions/build_release> Trying to remove affection of path problem Windows uses '\' as path separator whereas Linux/macOS use '/' I'm not sure, but I thought this occurs problem with find, so I decided no to use that separator --- .github/workflows/build_release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_release.yaml b/.github/workflows/build_release.yaml index 795a5a2..76b84e0 100644 --- a/.github/workflows/build_release.yaml +++ b/.github/workflows/build_release.yaml @@ -24,7 +24,7 @@ jobs: shell: bash run: | stack build - find .stack-work/install -name oschark -exec mv {} . \; + (cd .stack-work; find install -name oschark -exec mv {} . \;) - name: save executable as artifact uses: actions/upload-artifact@v2 with: