Deploy #6
Workflow file for this run
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: Deploy | |
on: | |
workflow_dispatch: | |
inputs: | |
env: | |
description: 'Deployment target environment' | |
type: choice | |
required: true | |
options: | |
- dev | |
- test | |
- staging | |
- production | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
AWS_REGION: eu-west-1 | |
AWS_ROLE_TO_ASSUME: arn:aws:iam::603634817705:role/github-ecr-access | |
AWS_ROLE_SESSION_NAME: terramatch-microservices-cicd | |
ECR_REPOSITORY: terramatch-microservices/${{ github.events.inputs.env }} | |
ECR_REGISTRY: 603634817705.dkr.ecr.eu-west-1.amazonaws.com | |
NODE_ENV: production | |
IMAGE_TAG: ${{ github.sha }} # set the tag name for the docker image | |
jobs: | |
services: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure AWS credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: ${{ env.AWS_ROLE_TO_ASSUME }} | |
role-session-name: ${{ env.AWS_ROLE_SESSION_NAME }} | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Login to Amazon ECR | |
id: AWS | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
id: build-image | |
run: | | |
echo "${{secrets.MICROSERVICES_TEST_ENV}}" > ./.env | |
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD) | |
NODE_ENV=$NODE_ENV docker compose build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT | |
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | |