File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 76
76
77
77
- name : Move binaries
78
78
run : |
79
- mv -f ${{ env.REPOSITORY }}-x86_64-apple-darwin/${{ env.REPOSITORY }} ./byteme-x86_64-apple-darwin
80
- mv -f ${{ env.REPOSITORY }}-x86_64-unknown-linux-gnu/${{ env.REPOSITORY }} ./byteme-x86_64-unknown-linux-gnu
81
- mv -f ${{ env.REPOSITORY }}-x86_64-pc-windows-msvc/${{ env.REPOSITORY }}.exe ./byteme-x86_64-pc-windows.exe
79
+ rm -rf bin && mkdir bin
80
+ mv -f ${{ env.REPOSITORY }}-x86_64-apple-darwin/${{ env.REPOSITORY }} ./bin/${{ env.REPOSITORY }}-x86_64-apple-darwin
81
+ mv -f ${{ env.REPOSITORY }}-x86_64-unknown-linux-gnu/${{ env.REPOSITORY }} ./bin/${{ env.REPOSITORY }}-x86_64-unknown-linux-gnu
82
+ mv -f ${{ env.REPOSITORY }}-x86_64-pc-windows-msvc/${{ env.REPOSITORY }}.exe ./bin/${{ env.REPOSITORY }}-x86_64-pc-windows.exe
82
83
83
84
- name : Release
84
85
uses : softprops/action-gh-release@v1
89
90
draft : true
90
91
fail_on_unmatched_files : true
91
92
files : |
92
- ${{ env.REPOSITORY }}-x86_64-apple-darwin
93
- ${{ env.REPOSITORY }}-x86_64-unknown-linux-gnu
94
- ${{ env.REPOSITORY }}-x86_64-pc-windows.exe
93
+ ./bin/ ${{ env.REPOSITORY }}-x86_64-apple-darwin
94
+ ./bin/ ${{ env.REPOSITORY }}-x86_64-unknown-linux-gnu
95
+ ./bin/ ${{ env.REPOSITORY }}-x86_64-pc-windows.exe
You can’t perform that action at this time.
0 commit comments