Skip to content

Commit

Permalink
add plattform to filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Aug 17, 2021
1 parent 51da858 commit 890135a
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ jobs:
- name: Rename Lin and Mac Release
if: ${{ !startsWith(matrix.os, 'windows') }}
run: cp ./dist/run ./dist/quit-${{ matrix.os }}
run: cp ./dist/run ./dist/quit-${{ matrix.os }}-${{ matrix.platform }}

- name: Rename Win Release
if: ${{ startsWith(matrix.os, 'windows') }}
run: cp ./dist/run.exe ./dist/quit-${{ matrix.os }}.exe
run: cp ./dist/run.exe ./dist/quit-${{ matrix.os }}-${{ matrix.platform }}.exe

#- name: Prepare Deployment
# run: |
Expand Down Expand Up @@ -132,9 +132,12 @@ jobs:
dist/quit-32bit-linux
dist/quit-64bit-windows.exe
dist/quit-32bit-windows.exe
dist/quit-windows-2019.exe
dist/quit-ubuntu-18.04
dist/quit-macos-11
dist/quit-windows-2019-x64.exe
dist/quit-ubuntu-18.04-x64
dist/quit-macos-11-x64
dist/quit-windows-2019-x86.exe
dist/quit-ubuntu-18.04-x86
dist/quit-macos-11-x86
docker:
Expand Down

0 comments on commit 890135a

Please sign in to comment.