fix: correct Go build path to ./cmd/api

- Fix build workflow to target ./cmd/api instead of ./cmd
- The main.go file is located in cmd/api/ subdirectory
This commit is contained in:
Damir Mukimov 2025-11-27 07:02:24 +01:00
parent 0e5699187a
commit 5b2c642d9a
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750

View File

@ -32,7 +32,7 @@ jobs:
- name: Build application - name: Build application
run: | run: |
go build -v -o bin/tercul-backend ./cmd go build -v -o bin/tercul-backend ./cmd/api
ls -la bin/ ls -la bin/
- name: Test binary - name: Test binary