Skip to content

Commit d43e07c

Browse files
committed
fix(workflow): correct target branch for release
1 parent 6f6e9ef commit d43e07c

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

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

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
run: |
1919
echo version=$(cat VERSION) >> $GITHUB_OUTPUT
2020
21-
- name: Setup Golang
22-
uses: actions/setup-go@v5
23-
with:
24-
go-version: '1.22'
21+
# - name: Setup Golang
22+
# uses: actions/setup-go@v5
23+
# with:
24+
# go-version: '1.22'
2525

26-
- name: Build binaries
27-
id: binaries
28-
run: |
29-
make release-binaries
26+
# - name: Build binaries
27+
# id: binaries
28+
# run: |
29+
# make release-binaries
3030

3131
- name: Create release draft
3232
id: create-release
@@ -35,6 +35,8 @@ jobs:
3535
run: |
3636
gh release create "v${{ steps.version.outputs.version }}" \
3737
--title "v${{ steps.version.outputs.version }}" \
38+
--target "${{ github.base_ref }}" \
3839
--generate-notes \
39-
--draft \
40-
dist/release/*
40+
--draft
41+
# \
42+
# dist/release/*

0 commit comments

Comments
 (0)