We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05f213 commit c08eb87Copy full SHA for c08eb87
.github/workflows/build.yaml
@@ -15,13 +15,20 @@ jobs:
15
- ubuntu-latest
16
- windows-latest
17
- macos-latest
18
+ include:
19
+ - os: ubuntu-latest
20
+ platform: linux
21
+ - os: windows-latest
22
+ platform: windows
23
+ - os: macos-latest
24
+ platform: macos
25
runs-on: ${{ matrix.os }}
26
steps:
27
- uses: actions/checkout@v4
28
- uses: actions/setup-go@v5
29
with:
30
go-version-file: 'go.mod'
- - run: go build -o dist/${{ matrix.os }}/
31
+ - run: go build -o dist/${{ matrix.platform }}/
32
- uses: actions/upload-artifact@v3
33
34
path: dist
0 commit comments