Skip to content

Commit a47f8e8

Browse files
Add go mod tidy to workflow to generate go.sum files
1 parent f37dad5 commit a47f8e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
- name: Build webhook-receiver Lambda
2929
working-directory: lambda/webhook-receiver-go
3030
run: |
31-
go mod download
31+
go mod tidy
3232
GOOS=linux GOARCH=amd64 go build -o bootstrap main.go
3333
zip function.zip bootstrap
3434
3535
- name: Build es-indexer-worker Lambda
3636
working-directory: lambda/es-indexer-worker-go
3737
run: |
38-
go mod download
38+
go mod tidy
3939
GOOS=linux GOARCH=amd64 go build -o bootstrap main.go
4040
zip function.zip bootstrap
4141

0 commit comments

Comments
 (0)