Skip to content

Commit

Permalink
workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
mpwsh committed Jan 30, 2024
1 parent 8d24b95 commit f9dfa6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ jobs:
path: /app/${{ github.event.repository.name }}
destination: target/${{ matrix.platform.target }}/release/${{ github.event.repository.name }}
- name: Rename binary (linux and macos)
run: mv target/${{ matrix.platform.target }}/release/${{ github.event.repository.name }} target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
run: |
ls -la target/${{ matrix.platform.target }}/release/
mv target/${{ matrix.platform.target }}/release/${{ github.event.repository.name }} target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
if: matrix.platform.os_name != 'Windows-x86_64'
- name: Rename binary (windows)
run: mv target/${{ matrix.platform.target }}/release/${{ github.event.repository.name }}.exe target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
Expand Down

0 comments on commit f9dfa6d

Please sign in to comment.