From dae53fc73c432f74ec1cf55d868a3f1fc3b56eff Mon Sep 17 00:00:00 2001 From: Cj-bc Date: Sat, 21 Aug 2021 00:19:13 +0900 Subject: [PATCH] Fix: actions/build_release It seems that 'find' command wasn't executed in previous code. So I changed it not to use subshell --- .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 76b84e0..cadbd6f 100644 --- a/.github/workflows/build_release.yaml +++ b/.github/workflows/build_release.yaml @@ -24,7 +24,7 @@ jobs: shell: bash run: | stack build - (cd .stack-work; find install -name oschark -exec mv {} . \;) + find .stack-work -path "*bin/oschark" -exec mv {} . \; - name: save executable as artifact uses: actions/upload-artifact@v2 with: