Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ffdfgdfg authored Sep 27, 2023
1 parent 975cf4f commit 6cafcb0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
id: go
- name: Build
run: |
GOOS=linux GOARCH=amd64 go build
Expand All @@ -23,6 +28,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
id: go
- name: Build
run: |
GOOS=windows GOARCH=amd64 go build
Expand All @@ -39,6 +49,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
id: go
- name: Build
run: |
GOOS=darwin GOARCH=amd64 go build
Expand Down

0 comments on commit 6cafcb0

Please sign in to comment.