Test out of disk error #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-cicd-image | |
on: | |
push: | |
# tags: ['*'] | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build: | |
runs-on: ['hyperenv-beta', 'byo-vpc'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'Assuming IAM role' | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: arn:aws:iam::486555357186:role/github-oidc | |
role-session-name: deploy | |
aws-region: us-east-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: 'Enable Multi Arch' | |
run: docker buildx create --use | |
- name: 'Build container image' | |
run: docker buildx build --platform linux/arm64,linux/amd64 --push -t 486555357186.dkr.ecr.us-east-1.amazonaws.com/cicd-tools:${{github.ref_name}} . | |
working-directory: build-cicd-image |