There was an error while loading. Please reload this page.
1 parent 6488eca commit bc5de22Copy full SHA for bc5de22
1 file changed
.github/workflows/go.yml
@@ -45,15 +45,15 @@ jobs:
45
46
- name: Build Persys Intelligence
47
working-directory: ./persys-intelligence
48
- run: go build -o bin/intelligence ./cmd
+ run: go build -o bin/intelligence ./cmd/intelligence
49
50
- name: Build Persys Automation
51
working-directory: ./persys-automation
52
- run: go build -o bin/automation ./cmd
+ run: go build -o bin/automation ./cmd/automation
53
54
- name: Build Persys Go SDK
55
working-directory: ./sdk
56
- run: go build -o bin/sdk ./cmd
+ run: go build -o bin/sdk .
57
58
- name: Build Persys Vault Manager
59
working-directory: ./vault-manager
@@ -70,4 +70,4 @@ jobs:
70
working-directory: ./persysctl
71
run: |
72
go mod download
73
- go build -o bin/persysctl .
+ go build ./...
0 commit comments