Skip to content

Commit

Permalink
fix: go build command line
Browse files Browse the repository at this point in the history
  • Loading branch information
juev committed Dec 8, 2023
1 parent 6f03dc7 commit 02a8644
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:
run: go version
shell: bash
- name: Build
run: go build cmd/gobrew
run: go build ./cmd/gobrew
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/coveritup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Build
run: |
BUILD_START=$SECONDS
go build -ldflags '-s -w' -o main cmd/gobrew
go build -ldflags '-s -w' -o main ./cmd/gobrew
echo SCORE=$(($SECONDS-BUILD_START)) >> "$GITHUB_ENV"
shell: bash

Expand Down

0 comments on commit 02a8644

Please sign in to comment.