Skip to content

Commit

Permalink
wrap conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Aug 17, 2021
1 parent 654c329 commit 3cfaa15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ jobs:
pyinstaller --clean -y --dist ./dist/${{ matrix.os }} --workpath /tmp *.spec
- name: Rename Lin and Mac Release
if: !startsWith(matrix.os, 'windows')
if: ${{ !startsWith(matrix.os, 'windows') }}
run: cp ./dist/${{ matrix.os }}/run ./dist/quit-${{ matrix.os }}

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

#- name: Prepare Deployment
Expand Down

0 comments on commit 3cfaa15

Please sign in to comment.