Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

fix: always build for amd64 when building go functions #1121

Merged
merged 1 commit into from
Jun 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions src/runtimes/go/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const build = async ({ destPath, mainFile, srcDir }: { destPath: string;
env: {
CGO_ENABLED: '0',
GOOS: 'linux',
GOARCH: 'amd64',
},
})
} catch (error) {
Expand Down