From 7a8503ed3e177b1418025bcc0471901595d7553c Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sat, 26 Feb 2022 00:46:02 -0500 Subject: [PATCH] Fixed binary file names in releases --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 8ded20a..11fc697 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -10,8 +10,8 @@ pipeline: commands: - go get - GOOS=windows GOARCH=amd64 go build -o dist/bgbench-windows-x86_64-${CI_COMMIT_TAG}.exe - - GOOS=linux GOARCH=amd64 go build -o dist/bench-linux-x86_64-${CI_COMMIT_TAG} - - GOOS=darwin GOARCH=amd64 go build -o dist/bench-macos-x86_64-${CI_COMMIT_TAG} + - GOOS=linux GOARCH=amd64 go build -o dist/bgbench-linux-x86_64-${CI_COMMIT_TAG} + - GOOS=darwin GOARCH=amd64 go build -o dist/bgbench-macos-x86_64-${CI_COMMIT_TAG} when: event: tag