Build client-as image and push to ECR #12
This file contains 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-images | |
run-name: Build client-as image and push to ECR | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build main image and push to ECR | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
packages: read | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/build-publish-image | |
with: | |
repository: client-as | |
repo_token: ${{ secrets.TP_BUILDER_REPO_TOKEN }} | |
dockerfile: Dockerfile | |