Skip to content

Commit 0a38722

Browse files
committed
fix: correct build path in CI workflow
- change build path from ./cmd/workie to . (root directory) - main.go is in the root directory, not in cmd/workie
1 parent 31f32f6 commit 0a38722

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ jobs:
102102
GOARCH: ${{ matrix.goarch }}
103103
run: |
104104
if [ "$GOOS" = "windows" ]; then
105-
go build -o dist/workie-${{ matrix.goos }}-${{ matrix.goarch }}.exe ./cmd/workie
105+
go build -o dist/workie-${{ matrix.goos }}-${{ matrix.goarch }}.exe .
106106
else
107-
go build -o dist/workie-${{ matrix.goos }}-${{ matrix.goarch }} ./cmd/workie
107+
go build -o dist/workie-${{ matrix.goos }}-${{ matrix.goarch }} .
108108
fi
109109
110110
- name: Upload build artifacts

0 commit comments

Comments
 (0)