Skip to content

Instantly share code, notes, and snippets.

@YannMjl
Last active November 24, 2022 16:43
Show Gist options
  • Save YannMjl/57a1a83ec036e331411adf50dd14f069 to your computer and use it in GitHub Desktop.
Save YannMjl/57a1a83ec036e331411adf50dd14f069 to your computer and use it in GitHub Desktop.
upload the app docker image to AWS ECR from GitHub Actions
# upload the app docker image to AWS ECR
push_to_AWS_ECR:
name: Deploy docker image to AWS ECR
runs-on: ubuntu-latest
# run this job only if the app build and test successfully
needs: [build_test]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push the image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: ${{ secrets.AWS_ECR_REPO_NAME }}
IMAGE_TAG: latest
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
echo "Pushing image to ECR..."
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment