Merge pull request #288 from fiterlatam/FSAB-4 #289
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: Albo Fineract Dev CI/CD | |
on: | |
push: | |
branches: | |
- fiter/albo/dev | |
jobs: | |
continuous-integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- uses: kamiazya/setup-graphviz@v1 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.LATAM_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.LATAM_AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-2 | |
- id: commit | |
uses: pr-mpt/actions-commit-hash@v1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: latam-backend | |
IMAGE_TAG: ${{ steps.commit.outputs.short }} | |
run: | | |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
continuous-deployment: | |
needs: continuous-integration | |
runs-on: ubuntu-latest | |
steps: | |
- id: commit | |
uses: pr-mpt/actions-commit-hash@v1 | |
- name: executing remote ssh commands using ssh key | |
env: | |
IMAGE_TAG: ${{ steps.commit.outputs.short }} | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.LATAM_REMOTE_HOST }} | |
username: ${{ secrets.LATAM_REMOTE_USER }} | |
key: ${{ secrets.LATAM_EC2_SSH_KEY }} | |
script: | | |
./docker-login.sh | |
cd fineract | |
echo IMAGE_TAG=${{ steps.commit.outputs.short }} > .env | |
docker-compose down | |
docker-compose up -d |