File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,26 @@ jobs:
3232 needs : create-release
3333 strategy :
3434 matrix :
35- os : [ubuntu-latest, macos-latest, windows-latest]
35+ include :
36+ - target : x86_64-unknown-linux-gnu
37+ os : ubuntu-latest
38+ - target : x86_64-apple-darwin
39+ os : macos-latest
40+ - target : x86_64-pc-windows-msvc
41+ os : windows-latest
42+ - target : aarch64-unknown-linux-gnu
43+ os : ubuntu-latest
44+ - target : aarch64-apple-darwin
45+ os : macos-latest
46+ - target : aarch64-pc-windows-msvc
47+ os : windows-latest
48+
3649 runs-on : ${{ matrix.os }}
3750 steps :
3851 - uses : actions/checkout@v3
3952 - uses : taiki-e/upload-rust-binary-action@v1
4053 with :
4154 bin : tokio-console
55+ target : ${{ matrix.target }}
4256 env :
4357 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments