Skip to content

Commit

Permalink
feat: deploy automatico nos containers ECR (#183)
Browse files Browse the repository at this point in the history
* empty commit to test pipeline
  • Loading branch information
pvdevs authored Nov 5, 2024
1 parent ac9c886 commit 7d3a21d
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 53 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/deploy-hmg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy to Homologation

on:
push:
branches:
- hmg
pull_request:
branches:
- hmg

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Configure AWS credentials for Homologation
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 for Homologation
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: vagas-hmg
IMAGE_TAG: latest
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
36 changes: 36 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy to Production

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Configure AWS credentials for Production
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 for Production
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: vagas
IMAGE_TAG: latest
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
37 changes: 0 additions & 37 deletions .github/workflows/docker-image-merge.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/docker-image.yml

This file was deleted.

0 comments on commit 7d3a21d

Please sign in to comment.