Skip to content

Commit

Permalink
[workflows/release] Fix matrix config
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdothtml committed May 30, 2024
1 parent 498091c commit 57c7656
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
artifact_name: [windows, linux, macos]
include:
- os: windows-latest
artifact_name: windows
- os: ubuntu-latest
artifact_name: linux
- os: macos-latest
artifact_name: macos
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 57c7656

Please sign in to comment.