Skip to content

Commit

Permalink
ci: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
imyanice authored Aug 3, 2024
1 parent 82e90f9 commit 741781a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
run: cargo build --release --target ${{ matrix.target }}

- name: rename file (windows)
if: matrix.os == 'windows-latest'
if: matrix.platform == 'windows-latest'
run: rename target\\${{ matrix.target }}\\release\\launcher.exe target\\${{ matrix.target }}\\release\\launcher-${{ matrix.target }}.exe

- name: rename file (unix)
if: matrix.os != 'windows-latest'
if: matrix.platform != 'windows-latest'
run: mv target/${{ matrix.target }}/release/launcher target/${{ matrix.target }}/release/launcher-${{ matrix.target }}

- name: release
Expand Down

0 comments on commit 741781a

Please sign in to comment.