Skip to content

Commit 28a8ecd

Browse files
authored
fix/ee release pipelines (#1926)
* fix ee path name * update slack provider
1 parent e7504dc commit 28a8ecd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ee_cli_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
goos: linux
3131
goarch: amd64
3232
goversion: 1.21.1
33-
project_path: ./cli/cmd/digger
33+
project_path: ./ee/cli/cmd/digger
3434
binary_name: digger
3535
pre_command: export CGO_ENABLED=0
3636
ldflags: ${{ matrix.ldflags }}

cli/pkg/drift/Provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func (d DriftNotificationProviderBasic) Get(prService ci.PullRequestService) (co
1919
if slackNotificationUrl != "" {
2020
notification = SlackNotification{slackNotificationUrl}
2121
} else {
22-
return nil, fmt.Errorf("could not identify drift mode, please specify slack or github")
22+
return nil, fmt.Errorf("could not identify drift mode, please specify slack using env variable INPUT_DRIFT_DETECTION_SLACK_NOTIFICATION_URL")
2323
}
2424
return notification, nil
2525
}

0 commit comments

Comments
 (0)