diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 518b96f..8ac7915 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -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: @@ -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: @@ -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: