Skip to content

Commit 7b10766

Browse files
committed
build: fix release workflow to support matrix.platform.name
1 parent 0461e26 commit 7b10766

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ env:
1515

1616
jobs:
1717
prepare-release:
18-
runs-on: ubuntu-22.04
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
platform:
22+
- name: linux_x86-64
23+
runs-on: ubuntu-22.04
24+
runs-on: ${{ matrix.platform.runs-on }}
1925
steps:
2026
- name: Checkout code
2127
uses: actions/checkout@v4

0 commit comments

Comments
 (0)