From d3be68d2a716bf57774e5273823ff623d3acc74a Mon Sep 17 00:00:00 2001 From: Cj-bc Date: Thu, 19 Aug 2021 18:16:04 +0900 Subject: [PATCH] Fix: Replace all tabs in action with spaces It seems like tab isn't allowed --- .github/workflows/build_release.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_release.yaml b/.github/workflows/build_release.yaml index 5d5f0ca..285ef60 100644 --- a/.github/workflows/build_release.yaml +++ b/.github/workflows/build_release.yaml @@ -2,7 +2,7 @@ on: push: tags: - - "v*" + - "v*" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -20,13 +20,13 @@ jobs: - name: build executable run: | - stack build + stack build find .stack-work/install -name oschark -exec mv {} . \; - name: do Release uses: softprops/action-gh-release@v1 - with: - prerelease: true - files: | - oschark - LICENSE - \ No newline at end of file + with: + prerelease: true + files: | + oschark + LICENSE + \ No newline at end of file