Skip to content

Commit a6b8cc8

Browse files
committed
fix(workflow): enable binary building
1 parent 2e3122b commit a6b8cc8

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/create-release-draft.yaml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
run: |
2222
echo version=$(cat VERSION) >> $GITHUB_OUTPUT
2323
24-
# - name: Setup Golang
25-
# uses: actions/setup-go@v5
26-
# with:
27-
# go-version: '1.22'
24+
- name: Setup Golang
25+
uses: actions/setup-go@v5
26+
with:
27+
go-version: '1.22'
2828

29-
# - name: Build binaries
30-
# id: binaries
31-
# run: |
32-
# make release-binaries
29+
- name: Build binaries
30+
id: binaries
31+
run: |
32+
make release-binaries
3333
3434
- name: Create release draft
3535
id: create-release
@@ -40,6 +40,5 @@ jobs:
4040
--title "v${{ steps.version.outputs.version }}" \
4141
--target "${{ github.base_ref }}" \
4242
--generate-notes \
43-
--draft
44-
# \
45-
# dist/release/*
43+
--draft \
44+
dist/release/*

0 commit comments

Comments
 (0)