Deploying main to prod #41
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 Prod | |
run-name: Deploying ${{ github.ref_name }} to prod | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseTag: | |
description: "Tag of version to be promoted to prod" | |
required: true | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
ci: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
environment: prod | |
strategy: | |
matrix: | |
node-version: [20.x] | |
defaults: | |
run: | |
working-directory: "arSam" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.inputs.releaseTag }} | |
- shell: bash | |
env: | |
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} | |
run: | | |
curl -X POST -H 'Content-Type: application/json' $WEBHOOK_URL --data '{"text":"A&R API API Prod"}' | |
# Tag not found | |
- name: Tag not found | |
if: ${{ failure() }} | |
run: | | |
echo "::error::Git Tag not found, please double check input" | |
exit 1 | |
# Setup AWS SAM | |
- name: Setup AWS SAM | |
uses: aws-actions/setup-sam@v2 | |
with: | |
use-installer: true | |
# Assume AWS IAM Role | |
- name: Get AWS credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
role-session-name: GitHub_to_AWS_via_FederatedOIDC | |
aws-region: ${{ vars.AWS_REGION }} | |
# SAM Build | |
- name: Cache SAM Build | |
id: cache-sam-build | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**arSam/.aws-sam | |
key: ${{ github.sha }}-ar-api-sam-cache | |
- name: Run sam build | |
if: steps.cache-sam-build.outputs.cache-hit != 'true' | |
run: | | |
sam build --cached | |
# Prevent prompts and failure when the stack is unchanged | |
- name: SAM deploy | |
env: | |
STAGE: ${{ vars.AR_API_STAGE }} | |
ACCOUNT_ID: ${{ vars.ACCOUNT_ID }} | |
AWS_ACCOUNT_LIST: ${{ vars.AWS_ACCOUNT_LIST }} | |
SSO_ISSUER: ${{ vars.SSO_ISSUER }} | |
SSO_JWKSURI: ${{ vars.SSO_JWKSURI }} | |
SSO_CLIENT_ID: ${{ secrets.SSO_CLIENT_ID }} | |
SSO_ORIGIN: ${{ vars.SSO_ORIGIN }} | |
S3_BUCKET_DATA: ${{ vars.S3_BUCKET_DATA }} | |
DATA_REGISTER_NAME_ENDPOINT: ${{ secrets.DATA_REGISTER_NAME_ENDPOINT }} | |
DATA_REGISTER_NAME_API_KEY: ${{ secrets.DATA_REGISTER_NAME_API_KEY }} | |
run: | | |
sam deploy --no-confirm-changeset --no-fail-on-empty-changeset --parameter-overrides "AccountId=$ACCOUNT_ID" "Stage=$STAGE" "SSOIssuerUrl=$SSO_ISSUER" "SSOJWKSUri=$SSO_JWKSURI" "SSOClientId=$SSO_CLIENT_ID" "SSOOrigin=$SSO_ORIGIN" "AWSAccountList=$AWS_ACCOUNT_LIST" "S3BucketData=$S3_BUCKET_DATA" "DataRegisterNameEndpoint=$DATA_REGISTER_NAME_ENDPOINT" "DataRegisterNameApiKey=$DATA_REGISTER_NAME_API_KEY" | |
- shell: bash | |
env: | |
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} | |
run: | | |
curl -X POST -H 'Content-Type: application/json' $WEBHOOK_URL --data '{"text":"A&R API - Deploy Prod Complete"}' |