Skip to content

Commit 5c9dd9e

Browse files
committed
fixup! chore: update release workflow to use new build scripts
1 parent 4f03e37 commit 5c9dd9e

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/release.yaml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,14 @@ jobs:
5353
run: make site/out/index.html
5454

5555
- name: Build Slim Binaries
56-
run: make bin
56+
run: |
57+
mkdir -p ./dist
58+
./scripts/build_go_slim.sh \
59+
--version "$(VERSION)" \
60+
--output ./dist/ \
61+
linux:amd64,armv7,arm64 \
62+
windows:amd64,arm64 \
63+
darwin:amd64,arm64
5764
5865
- name: Build Linux and Windows Binaries
5966
run: |
@@ -120,7 +127,14 @@ jobs:
120127
run: make site/out/index.html
121128

122129
- name: Build Slim Binaries
123-
run: make bin
130+
run: |
131+
mkdir -p ./dist
132+
./scripts/build_go_slim.sh \
133+
--version "$(VERSION)" \
134+
--output ./dist/ \
135+
linux:amd64,armv7,arm64 \
136+
windows:amd64,arm64 \
137+
darwin:amd64,arm64
124138
125139
- name: Build darwin Binaries (with signatures)
126140
run: |

0 commit comments

Comments
 (0)