From b75d170c1aecc1af0979373d262e9cb66d032da6 Mon Sep 17 00:00:00 2001 From: Polspoel Jens Date: Tue, 23 Apr 2024 10:12:47 +0200 Subject: [PATCH] :rocket: Add CI/CD pipeline for UAT --- .github/workflows/deployment_uat.yml | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/deployment_uat.yml diff --git a/.github/workflows/deployment_uat.yml b/.github/workflows/deployment_uat.yml new file mode 100644 index 0000000..bc6c4fe --- /dev/null +++ b/.github/workflows/deployment_uat.yml @@ -0,0 +1,32 @@ +on: + push: + branches: + - uat +jobs: + build: + name: Build and upload Docker image + runs-on: [self-hosted] + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup AWS credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ secrets.AWS_DEFAULT_REGION }} + role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} + + - name: Login to Amazon ECR + id: login-ecr + uses: aws-actions/amazon-ecr-login@v2 + + - name: Build, tag, and push docker image to Amazon ECR + env: + REGISTRY: ${{ steps.login-ecr.outputs.registry }} + REPOSITORY: inbo-exotenportaal-portal + IMAGE_TAG: ${{ github.sha }} + run: | + docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG . + docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG