Point connectors build at docker.io, not the redpanda mirror #4
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: "Build Connectors Image" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "connectors/**" | |
| workflow_dispatch: | |
| inputs: | |
| ref: | |
| description: "Git ref to build (SHA, tag, or branch). Defaults to main." | |
| required: false | |
| default: "main" | |
| jobs: | |
| build-connectors-image: | |
| name: Build Connectors Image | |
| uses: ./.github/workflows/docker-build-multi-arch.yaml | |
| with: | |
| image-name: 201661579678.dkr.ecr.us-east-1.amazonaws.com/lago-connectors | |
| registry: ecr | |
| aws-region: us-east-1 | |
| ref: ${{ inputs.ref }} | |
| platforms: amd64,arm64 | |
| context: connectors | |
| dockerfile: connectors/Dockerfile | |
| secrets: | |
| registry-user: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| registry-token: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |