Skip to content

Commit

Permalink
Generate binaries for OS X and ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
natenho authored May 1, 2023
1 parent 177c34b commit 594fd2c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,23 @@ jobs:
run: go mod download

- name: Build for Windows
run: GOOS=windows go build -o go-jira-migrate.exe .
run: GOOS=windows GOARCH=amd64 go build -o go-jira-migrate_windows_amd64.exe .

- name: Build for Windows ARM
run: GOOS=windows GOARCH=amd64 go build -o go-jira-migrate_windows_arm64.exe .

- name: Build for Linux
run: GOOS=linux go build -o go-jira-migrate .
run: GOOS=linux GOARCH=amd64 go build -o go-jira-migrate_linux_amd64 .

- name: Build for Linux ARM
run: GOOS=linux GOARCH=amd64 go build -o go-jira-migrate_linux_arm64 .

- name: Build for OS X
run: GOOS=darwin GOARCH=amd64 go build -o go-jira-migrate_darwin_amd64 .

- name: Build for OS X ARM
run: GOOS=darwin GOARCH=arm64 go build -o go-jira-migrate_darwin_arm64 .

- name: Tag Release
id: tag_release
uses: mathieudutour/github-tag-action@v6.1
Expand Down

0 comments on commit 594fd2c

Please sign in to comment.