Deploy Lambda metadata #113
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 Lambda metadata | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "**/src/oneid/oneid-lambda-metadata/**" | |
- "**/src/oneid/oneid-common/**" | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: 'Choose environment' | |
type: choice | |
required: true | |
default: dev | |
options: | |
- dev | |
- uat | |
- prod | |
jobs: | |
setup: | |
runs-on: ubuntu-22.04 | |
outputs: | |
matrix: ${{ steps.setmatrix.outputs.matrix }} | |
steps: | |
- name: Set Dynamic Env Matrix | |
id: setmatrix | |
run: | | |
echo "github.ref ${{ github.ref }}" | |
echo "event name ${{ github.event_name }}" | |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | |
if [ "${{ github.event.inputs.environment }}" == "prod" ]; then | |
matrixStringifiedObject="{\"include\":[{\"environment\":\"prod\", \"region\":\"eu-south-1\"}, {\"environment\":\"prod\", \"region\":\"eu-central-1\"}]}" | |
else | |
matrixStringifiedObject="{\"include\":[{\"environment\":\"${{ github.event.inputs.environment }}\", \"region\":\"eu-south-1\"}]}" | |
fi | |
else | |
matrixStringifiedObject="{\"include\":[{\"environment\":\"dev\", \"region\":\"eu-south-1\"}, {\"environment\":\"uat\", \"region\":\"eu-south-1\"}, {\"environment\":\"prod\", \"region\":\"eu-south-1\"}, {\"environment\":\"prod\", \"region\":\"eu-central-1\"}]}" | |
fi | |
echo "matrix=$matrixStringifiedObject" >> $GITHUB_OUTPUT | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'maven' | |
- name: Set up Maven settings.xml | |
env: | |
GH_TOKEN_READ_PACKAGES: ${{ secrets.GH_TOKEN_READ_PACKAGES }} | |
GH_TOKEN_READ_PACKAGES_USER: ${{ secrets.GH_TOKEN_READ_PACKAGES_USER }} | |
shell: bash | |
run: | | |
echo "<settings><servers><server><id>github</id><username>${{ secrets.GH_TOKEN_READ_PACKAGES_USER }}</username><password>${{ secrets.GH_TOKEN_READ_PACKAGES }}</password></server></servers></settings>" >> src/oneid/settings.xml | |
- name: Build with Maven | |
working-directory: src/oneid | |
run: ./mvnw -f pom.xml -B package -DskipTests -P oneid-lambda-service-metadata-aggregate -s settings.xml | |
- name: Archive build artifacts | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 | |
with: | |
name: metadata-lambda | |
path: ./src/oneid/oneid-lambda-service-metadata/target/function.zip | |
deploy: | |
name: Deploy lambda metadata ${{ matrix.environment }}-${{ matrix.region }} | |
if: ${{ needs.setup.outputs.matrix != '' }} | |
runs-on: ubuntu-22.04 | |
needs: [ setup, build ] | |
strategy: | |
matrix: ${{ fromJson(needs.setup.outputs.matrix) }} | |
continue-on-error: false | |
environment: ${{ matrix.environment == 'prod' && format('{0}/{1}', matrix.environment, matrix.region) || matrix.environment }} | |
env: | |
ENV_SHORT: ${{ fromJSON('{"dev":"d","uat":"u","prod":"p"}')[matrix.environment] }} | |
REGION_SHORT: ${{ fromJSON('{"eu-south-1":"es-1","eu-central-1":"ec-1"}')[matrix.region] }} | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e | |
with: | |
name: metadata-lambda | |
path: ./src/oneid/oneid-lambda-service-metadata/target | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 | |
with: | |
role-to-assume: ${{ vars.IAM_ROLE_DEPLOY_LAMBDA }} | |
aws-region: ${{ matrix.region }} | |
- name: Update Lambda function (${{ matrix.environment }}) | |
run: | | |
aws s3 cp src/oneid/oneid-lambda-service-metadata/target/function.zip s3://${{vars.LAMBDA_CODE_BUCKET_NAME}}/${{vars.LAMBDA_METADATA_KEY}} | |
- name: Deploy Lambda function (${{ matrix.environment }}) | |
run: | | |
aws lambda update-function-code \ | |
--function-name oneid-${{ env.REGION_SHORT }}-${{ env.ENV_SHORT }}-metadata \ | |
--s3-bucket ${{vars.LAMBDA_CODE_BUCKET_NAME}} --s3-key ${{vars.LAMBDA_METADATA_KEY}} |