Skip to content

Commit

Permalink
ci(build): Fix windows artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
PotentialStyx committed Feb 3, 2024
1 parent 66d8691 commit ba3b35a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,19 @@
[
{
"os": "windows-latest",
"descriptor": "windows-x86",
"suffix": "windows-x86.exe",
},
{
"os": "ubuntu-latest",
"descriptor": "linux-x86",
"suffix": "linux-x86",
},
{
"os": "macos-13",
"descriptor": "macos-x86",
"suffix": "macos-x86",
},
{
"os": "macos-14",
"descriptor": "macos-arm",
"suffix": "macos-arm",
},
],
},
Expand Down Expand Up @@ -135,7 +135,7 @@
"with":
{
"path": "${{ runner.os != 'Windows' && 'target/release/homeval' || 'target\\release\\homeval.exe' }}",
"name": "homeval-${{ matrix.descriptor && matrix.descriptor || format('{0}-{1}', runner.os, runner.arch) }}",
"name": "homeval-${{ matrix.suffix && matrix.suffix || format('{0}-{1}', runner.os, runner.arch) }}",
},
},
],
Expand Down

0 comments on commit ba3b35a

Please sign in to comment.