Merge pull request #6 from cloudbeds/update-v1.6.5 #8
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 | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build-push: | |
name: Build and push application image | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Build and push application image | |
uses: cloudbeds/composite-actions/docker/build-push/aws-ecr@v2 | |
with: | |
# image_name: Only registry path is required. AWS ECR registry address will be automatically set by composite-actions | |
image_name: ${{ github.event.repository.name }} | |
image_tag: ${{ github.sha }} |