Skip to content

Commit

Permalink
.github: enable windows build (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
creachadair committed Dec 4, 2024
1 parent 96578f7 commit 00d85c3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@ jobs:
build_release:
strategy:
matrix:
GOOS: ["linux", "darwin"]
GOOS: ["linux", "darwin", "windows"]
GOARCH: ["amd64", "arm64"]
exclude:
- GOOS: windows
GOARCH: arm64
runs-on: ubuntu-20.04
if: contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
if: contains(fromJSON('["push", "pull_request", "workflow_dispatch"]'), github.event_name)
steps:
- name: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down

0 comments on commit 00d85c3

Please sign in to comment.