Skip to content

Commit 254baf2

Browse files
committed
Fix publish-release
1 parent d8b4d19 commit 254baf2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,11 @@ jobs:
229229
- run: go install github.com/tcnksm/ghr@v0.13.0
230230
- attach_workspace:
231231
at: ~/share
232-
- run: ghr ${CIRCLE_TAG} bin/ ~/share/combined.json
232+
- run:
233+
name: Upload binaries and combined.json
234+
command: |
235+
cp ~/share/combined.json bin/
236+
ghr ${CIRCLE_TAG} bin/
233237
234238
mint-lint:
235239
executor: go

0 commit comments

Comments
 (0)