Skip to content

Commit

Permalink
misc(ci): fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeromos Kovács committed Nov 19, 2024
1 parent c1b077a commit 7ab531d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ env:

jobs:
build:
runs-on: ["macos-latest", "ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -26,5 +29,5 @@ jobs:
- name: Upload executable
uses: actions/upload-artifact@v4
with:
name: cgol-tui_*
path: target/*/release/cgol-tui*
name: cgol-tui_${{ matrix.target }}
path: target/${{ matrix.target }}/release/cgol-tui*

0 comments on commit 7ab531d

Please sign in to comment.