Skip to content

Commit 46972eb

Browse files
committed
Fix build
1 parent 440a77f commit 46972eb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/terraform.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
uses: actions/checkout@v2
2121
- name: "Fake zip files" # Validate will fail if it cannot find the zip files
2222
run: |
23-
touch modules/agent/lambdas/webhook/webhook.zip
23+
touch modules/webhook/lambdas/webhook/webhook.zip
2424
touch modules/runners/lambdas/scale-runners/scale-runners.zip
25-
touch modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/runner-binaries-syncer.zip
25+
touch modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/runner-binaries-syncer.zip
2626
- name: "Terraform Format"
2727
uses: hashicorp/terraform-github-actions@master
2828
with:

modules/runners/lambdas/scale-down/src/lambda.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { handle } from './cleanup-runners/handler';
1+
import { handle } from './scale-down/handler';
22

33
module.exports.handler = async (event: any, context: any, callback: any) => {
44
const statusCode = await handle();

modules/runners/lambdas/scale-down/src/local.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { handle } from './cleanup-runners/handler';
1+
import { handle } from './scale-down/handler';
22

33
handle().catch((e) => {
44
console.log(e);

0 commit comments

Comments
 (0)