Skip to content

Commit

Permalink
Add Mac ARM build to pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianMeersman committed Feb 28, 2024
1 parent 91f5e50 commit d18344f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
with:
go-version: '^1.21.6'
- run: |
GOOS=windows GOARCH=amd64 go build -buildvcs=false -o bin/supermake_windows_64.exe
GOOS=windows GOARCH=386 go build -buildvcs=false -o bin/supermake_windows_32.exe
GOOS=windows GOARCH=amd64 go build -buildvcs=false -o bin/supermake_windows_x64.exe
GOOS=windows GOARCH=386 go build -buildvcs=false -o bin/supermake_windows_x32.exe
- name: 'Upload build artifacts'
uses: actions/upload-artifact@v4
with:
Expand All @@ -31,7 +31,8 @@ jobs:
with:
go-version: '^1.21.6'
- run: |
GOOS=darwin GOARCH=amd64 go build -buildvcs=false -o bin/supermake_darwin_64
GOOS=darwin GOARCH=amd64 go build -buildvcs=false -o bin/supermake_darwin_x64
GOOS=darwin GOARCH=arm64 go build -buildvcs=false -o bin/supermake_mac_arm64
- name: 'Upload build artifacts'
uses: actions/upload-artifact@v4
with:
Expand All @@ -47,8 +48,8 @@ jobs:
with:
go-version: '^1.21.6'
- run: |
GOOS=linux GOARCH=amd64 go build -buildvcs=false -o bin/supermake_linux_64
GOOS=linux GOARCH=386 go build -buildvcs=false -o bin/supermake_linux_32
GOOS=linux GOARCH=amd64 go build -buildvcs=false -o bin/supermake_linux_x64
GOOS=linux GOARCH=386 go build -buildvcs=false -o bin/supermake_linux_x32
- name: 'Upload build artifacts'
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d18344f

Please sign in to comment.