From 633bcc171731968e63b99d1f40193dc661bd5398 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 8 Aug 2025 13:26:16 -0400 Subject: [PATCH] fix: remove dead line from makefile --- .../workflows/transaction-sender-ecr-cd.yml | 28 ------------------- Makefile | 3 -- 2 files changed, 31 deletions(-) delete mode 100644 .github/workflows/transaction-sender-ecr-cd.yml diff --git a/.github/workflows/transaction-sender-ecr-cd.yml b/.github/workflows/transaction-sender-ecr-cd.yml deleted file mode 100644 index 709f3402..00000000 --- a/.github/workflows/transaction-sender-ecr-cd.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Docker ECR Push - Transaction Sender - -on: - push: - branches: [main] - tags: - - v** - workflow_dispatch: - - -permissions: - packages: write - contents: read - id-token: write - -# simplest example of using the rust-base action -jobs: - docker-ecr-push: - uses: init4tech/actions/.github/workflows/ecr-build-and-push.yml@main - with: - rust-binary-name: transaction-submitter - environment: dev - requires-private-deps: true - dockerfile-path: transaction-submitter.Dockerfile - secrets: - aws-ecr-repository: ${{ secrets.AWS_ECR_REPOSITORY }} - aws-ecr-deployer-role-arn: ${{ secrets.AWS_ECR_DEPLOYER_ROLE_ARN }} - SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} diff --git a/Makefile b/Makefile index 9880665e..db935850 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,3 @@ fmt: clippy: $(CARGO) clippy $(CLIPPY_FLAGS) - -tx-submitter: - $(CARGO) run --bin transaction-submitter \ No newline at end of file