Skip to content

Commit 9e4d6cc

Browse files
Update publish-binary.yml
1 parent 782cd83 commit 9e4d6cc

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/publish-binary.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,20 @@ on:
66

77
jobs:
88
build:
9-
name: Publish binaries
10-
runs-on: ubuntu-latest
9+
name: Publish for ${{ matrix.os }}
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
include:
14+
- os: ubuntu-latest
15+
artifact_name: callscript
16+
asset_name: callscript-linux-amd64
17+
- os: windows-latest
18+
artifact_name: callscript.exe
19+
asset_name: callscript-windows-amd64
20+
- os: macos-latest
21+
artifact_name: callscript
22+
asset_name: callscript-macos-amd64
1123
steps:
1224
- uses: actions/checkout@v3
1325
- name: Set up Python 3.10

0 commit comments

Comments
 (0)