Skip to content

Commit

Permalink
Fix: actions/build_release
Browse files Browse the repository at this point in the history
It seems that 'find' command wasn't executed in previous code.
So I changed it not to use subshell
  • Loading branch information
Cj-bc committed Aug 20, 2021
1 parent 74cc746 commit dae53fc
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
(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:
Expand Down

0 comments on commit dae53fc

Please sign in to comment.