PM-1566 Reconfigure auto deployment CI #13
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: Build - publish - deploy | |
on: | |
push: | |
branches: | |
- main | |
- PM-1566-reconfigure-ci-keel | |
workflow_dispatch: | |
inputs: | |
docker_tag_suffix: | |
description: "Enter the Docker Tag suffix (e.g adhoc-test)" | |
required: true | |
type: string | |
env: | |
ECR_REPOSITORY_URL: 673156464838.dkr.ecr.us-west-2.amazonaws.com | |
ECR_REPOSITORY_NAME: gpt-survey-summarizer | |
APPLICATION_NAME: gpt-survey-summarizer | |
PLATFORM: staging | |
NAMESPACE: governance | |
jobs: | |
build-publish-deploy: | |
name: Build Publish and Deploy Docker Image | |
runs-on: minafoundation-default-runners | |
steps: | |
# - name: ⚙️ Set environment variables | |
# run: | | |
# echo "AWS_REGION=$AWS_REGION" >> $GITHUB_ENV | |
# echo "DEPLOYMENT_ROLE_NAME=$DEPLOYMENT_ROLE_NAME" >> $GITHUB_ENV | |
# echo "AWS_ROLE_DURATION_SECONDS=$AWS_ROLE_DURATION_SECONDS" >> $GITHUB_ENV | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
- name: 🦀 Get application version from package.json | |
id: application-version | |
uses: martinbeentjes/[email protected] | |
- name: 🏷️ Generate Tag | |
run: | | |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | |
echo "TAG=${{ steps.application-version.outputs.current-version }}-${{ github.event.inputs.docker_tag_suffix }}" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "push" ] && [ -n "${{ github.event.ref }}" ]; then | |
echo "TAG=${{ steps.application-version.outputs.current-version }}" >> $GITHUB_ENV | |
else | |
echo "Invalid event. Exiting..." | |
exit 1 | |
fi | |
- name: 🔑 ECR Login | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: 🔍 Check if Tag already exists | |
id: checktag | |
uses: tyriis/docker-image-tag-exists@main | |
with: | |
registry: ${{ env.ECR_REPOSITORY_URL}} | |
repository: ${{ env.ECR_REPOSITORY_NAME }} | |
tag: ${{ env.TAG }} | |
- name: 🛠️ Build and Push Docker | |
uses: mr-smithers-excellent/docker-build-push@v6 | |
if: steps.checktag.outputs.tag == 'not found' | |
with: | |
image: ${{ env.ECR_REPOSITORY_NAME }} | |
registry: ${{ env.ECR_REPOSITORY_URL }} | |
tags: ${{ env.TAG }} |