Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit 49c3a86

Browse files
committed
add function build to ci
1 parent e6fb8ce commit 49c3a86

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/binary.yml

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- uses: actions/checkout@v3
2121
with:
2222
fetch-depth: 0
23+
- uses: oven-sh/setup-bun@v1
24+
with:
25+
bun-version: latest
2326

2427
- run: git fetch --force --tags
2528

.goreleaser.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ before:
33
hooks:
44
- go mod tidy
55
- go build -o ./pkg/platform/dist/bridge/bootstrap ./pkg/platform/bridge
6+
- cd ./pkg/platform && ./scripts/build-functions
67
builds:
78
- env:
89
- CGO_ENABLED=0

cmd/sst/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ func main() {
262262
}
263263
cmd.Stdout = os.Stdout
264264
cmd.Stderr = os.Stderr
265+
cmd.Stdin = os.Stdin
265266
return cmd.Run()
266267
},
267268
},

0 commit comments

Comments
 (0)