From 4996afe8d0affa7e67eb3d5d12a92ecd54cd4279 Mon Sep 17 00:00:00 2001 From: Cj-bc Date: Sat, 21 Aug 2021 17:06:19 +0900 Subject: [PATCH] Fix: actions/build_release> rename all binaries that will be built by CI Those binaries should have appropriate name so that user can know which one to download --- .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 636877e..9fb134a 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 -path "*bin/oschark" -exec mv {} . \; + find .stack-work -path "*bin/oschark" -exec mv {} oschark_${{matrix.os}} \; - name: save executable as artifact uses: actions/upload-artifact@v2 with: