Skip to content

Commit

Permalink
Fix: Replace all tabs in action with spaces
Browse files Browse the repository at this point in the history
It seems like tab isn't allowed
  • Loading branch information
Cj-bc committed Aug 19, 2021
1 parent 10adb65 commit d3be68d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
on:
push:
tags:
- "v*"
- "v*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -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
with:
prerelease: true
files: |
oschark
LICENSE

0 comments on commit d3be68d

Please sign in to comment.