Skip to content

Commit

Permalink
Simplify Windows executable binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
iceiix committed Jul 5, 2020
1 parent bc1b1f1 commit 3337334
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ jobs:
- name: Move binary
run: |
if [[ ${{ matrix.os }} == windows ]]; then
mv target/release/stevenarella.exe stevenarella-${{ matrix.os }}.exe
mv target/release/stevenarella.exe stevenarella.exe
else
mv target/release/stevenarella stevenarella-${{ matrix.os }}
fi
# TODO: .app bundle for macOS
shell: bash
- name: Upload binary
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 3337334

Please sign in to comment.