Merge pull request #1372 from fiterlatam/fix/FSF-73-75-80 #848
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: FB CI | |
on: | |
push: | |
branches: | |
- fiter/fb/main | |
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_FB_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.LATAM_FB_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: prod-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 | |
#Checkout remote repository | |
- name: Checkout remote repo | |
uses: actions/checkout@v3 | |
with: | |
repository: fiterlatam/gitops-argocd | |
token: ${{ secrets.PAT }} | |
ref: fiter/fb/prod | |
- name: Update YAML file | |
run: | | |
sed -i 's/prod-backend.*/prod-backend:${{ steps.commit.outputs.short }}/' helm/back-deployment.yaml | |
- name: Commit changes | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "fiterlatam" | |
git add . | |
git commit -am "Fineract - update Docker image tag to ${{ steps.commit.outputs.short }}" | |
git push | |