This repository was archived by the owner on Feb 3, 2026. It is now read-only.
fix: someone changed the bin name and didnt change ci (#26) #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: submit_transaction | |
| environment: dev | |
| dockerfile-path: transaction-submitter.Dockerfile | |
| secrets: | |
| aws-ecr-repository: ${{ secrets.AWS_ECR_REPOSITORY }} | |
| aws-ecr-deployer-role-arn: ${{ secrets.AWS_ECR_DEPLOYER_ROLE_ARN }} |