Skip to content

REGIONをハードコードしてみる。 #3

REGIONをハードコードしてみる。

REGIONをハードコードしてみる。 #3

Workflow file for this run

name: Deploy to Amazon ECR
on:
push:
branches:
- main # or the branch name you want to trigger the workflow
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_DEFAULT_REGION: us-east-1
- name: Build, tag, and push image to Amazon ECR
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: todo-weed-repository
IMAGE_TAG: latest # or any other tag
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG