do not use localhost (#14) #11
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 refresh service to AWS ECR | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
env: | |
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID_PRIVADO_ID }} | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION_PRIVADO_ID }} | |
ECR_REPOSITORY: refresh_service | |
jobs: | |
deploy: | |
environment: | |
name: ${{ github.ref_name }} | |
name: Build and deploy refresh service to AWS ECR | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ env.AWS_DEFAULT_REGION }} | |
role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT_ID }}:role/PolygonIDActionsRole | |
role-session-name: GitHubActionsSession | |
- name: Login to Amazon ECR | |
uses: aws-actions/amazon-ecr-login@v2 | |
id: login-ecr | |
- name: Get version | |
run: echo "::set-output name=VERSION::$(git rev-parse --short HEAD)" | |
id: version | |
- name: Build with tag and push image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: ${{ env.ECR_REPOSITORY }} | |
IMAGE_TAG: ${{ steps.version.outputs.VERSION }} | |
run: | | |
docker build \ | |
-t ${{ env.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:latest \ | |
-t ${{ env.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} . | |
docker push ${{ env.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} | |
docker push ${{ env.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:latest |