Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanmaas committed May 8, 2020
1 parent 440a77f commit 46972eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
uses: actions/checkout@v2
- name: "Fake zip files" # Validate will fail if it cannot find the zip files
run: |
touch modules/agent/lambdas/webhook/webhook.zip
touch modules/webhook/lambdas/webhook/webhook.zip
touch modules/runners/lambdas/scale-runners/scale-runners.zip
touch modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/runner-binaries-syncer.zip
touch modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/runner-binaries-syncer.zip
- name: "Terraform Format"
uses: hashicorp/terraform-github-actions@master
with:
Expand Down
2 changes: 1 addition & 1 deletion modules/runners/lambdas/scale-down/src/lambda.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { handle } from './cleanup-runners/handler';
import { handle } from './scale-down/handler';

module.exports.handler = async (event: any, context: any, callback: any) => {
const statusCode = await handle();
Expand Down
2 changes: 1 addition & 1 deletion modules/runners/lambdas/scale-down/src/local.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { handle } from './cleanup-runners/handler';
import { handle } from './scale-down/handler';

handle().catch((e) => {
console.log(e);
Expand Down

0 comments on commit 46972eb

Please sign in to comment.