Skip to content

Commit

Permalink
Fix: actions/build_release> rename all binaries that will be built by CI
Browse files Browse the repository at this point in the history
Those binaries should have appropriate name so that user can know
which one to download
  • Loading branch information
Cj-bc committed Aug 21, 2021
1 parent 725cfcc commit 4996afe
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 -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:
Expand Down

0 comments on commit 4996afe

Please sign in to comment.