list out docker from current VM #39
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: Push KRE Docker Image to ECR | |
on: | |
push: | |
branches: | |
- Build-arm | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
run: | |
name: Run | |
runs-on: ubuntu-latest | |
env: | |
KRE_VERSION: 10.0.0-dev | |
DOCKER_IMAGE_PUBLISHED_TAG: build-arm | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Build | |
run: | | |
chmod u+x ./build/*.sh | |
./build/clean.sh $KRE_VERSION | |
./build/build.sh $KRE_VERSION | |
- name: Tag Docker image with commit ID | |
run: | | |
docker images | |
docker tag katalon-katalon 002582244933.dkr.ecr.us-east-1.amazonaws.com/katalon-studio:$DOCKER_IMAGE_PUBLISHED_TAG | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: arn:aws:iam::002582244933:role/katalon-github-oidc-federation | |
role-session-name: github-actions | |
aws-region: us-east-1 | |
mask-aws-account-id: "no" | |
- name: Login to Amazon ECR | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Push Docker image to ECR | |
run: docker push 002582244933.dkr.ecr.us-east-1.amazonaws.com/katalon-studio:$DOCKER_IMAGE_PUBLISHED_TAG |