Skip to content

Commit

Permalink
Fix: actions/build_release> Trying to remove affection of path problem
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Cj-bc committed Aug 19, 2021
1 parent 9c8eb74 commit a20028c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a20028c

Please sign in to comment.