Add pinpoint fields to notifications (#2326) #786
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, push, and deploy lambda image to staging | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
env: | |
REGISTRY: ${{ secrets.STAGING_API_LAMBDA_ECR_ACCOUNT }}.dkr.ecr.ca-central-1.amazonaws.com/notify | |
jobs: | |
build-push-and-deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
image: ["api-lambda"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Configure AWS credentials | |
id: aws-creds | |
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0 | |
with: | |
aws-access-key-id: ${{ secrets.STAGING_ECR_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.STAGING_ECR_SECRET_ACCESS_KEY }} | |
aws-region: ca-central-1 | |
- name: Build container | |
run: | | |
docker build \ | |
--build-arg GIT_SHA=${GITHUB_SHA::7} \ | |
-t $REGISTRY/${{ matrix.image }}:${GITHUB_SHA::7} \ | |
. \ | |
-f ci/Dockerfile.lambda | |
- name: Login to ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@5a88a04c91d5c6f97aae0d9be790e64d9b1d47b7 # v1.7.1 | |
- name: Push containers to ECR | |
run: | | |
docker push $REGISTRY/${{ matrix.image }}:${GITHUB_SHA::7} | |
- name: Logout of Amazon ECR | |
run: docker logout ${{ steps.login-ecr.outputs.registry }} | |
- name: Deploy lambda | |
run: | | |
aws lambda update-function-code \ | |
--function-name ${{ matrix.image }} \ | |
--image-uri $REGISTRY/${{ matrix.image }}:${GITHUB_SHA::7} > /dev/null 2>&1 | |
- name: Publish lambda version and update alias | |
run: | | |
aws lambda wait function-updated --function-name ${{ matrix.image }} | |
VERSION="$(aws lambda publish-version --function-name ${{ matrix.image }} | jq -r '.Version')" | |
aws lambda update-alias \ | |
--function-name ${{ matrix.image }} \ | |
--name latest \ | |
--function-version "$VERSION" > /dev/null 2>&1 | |
- name: Notify Slack channel if this job failed | |
if: ${{ failure() }} | |
run: | | |
json="{'text':'<!here> CI is failing in <https://github.com/cds-snc/notification-api/actions/runs/${GITHUB_RUN_ID}|notification-api> !'}" | |
curl -X POST -H 'Content-type: application/json' --data "$json" ${{ secrets.SLACK_WEBHOOK }} |