Skip to content

Commit

Permalink
Add some forgotten conversion from matrix.job to matrix.platform (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
martintc committed Dec 17, 2023
1 parent 809bd5e commit 9394194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ jobs:
args: "--release"

- name: Rename Binary
if: matrix.job.target != 'x86_64-pc-windows-msvc'
if: matrix.platform.target != 'x86_64-pc-windows-msvc'
shell: bash
run: |
mv target/release/comtrya comtrya-${{ matrix.platform.target }}
- name: Rename Binary.exe
if: matrix.job.target == 'x86_64-pc-windows-msvc'
if: matrix.platform.target == 'x86_64-pc-windows-msvc'
shell: bash
run: |
mv target/release/comtrya.exe comtrya-${{ matrix.platform.target }}.exe
Expand Down

0 comments on commit 9394194

Please sign in to comment.