generated from worldbank/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Deploy Space2Stats API Staging | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main # Trigger on PRs targeting the main branch | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' # Ensure compatibility with CDK | ||
|
||
- name: Install AWS CDK | ||
run: npm install -g aws-cdk | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build code | ||
run: npm run build | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: arn:aws:iam::017820688988:role/Space2Stats-Staging-Deploy-Role # Staging-specific IAM role | ||
aws-region: ${{ env.CDK_DEFAULT_REGION }} | ||
|
||
- name: Bootstrap CDK (if not done yet) | ||
run: cdk bootstrap aws://${{ env.CDK_DEFAULT_ACCOUNT }}/${{ env.CDK_DEFAULT_REGION }} | ||
|
||
- name: Deploy CDK stack to staging | ||
env: | ||
STAGE: dev | ||
CDK_CERTIFICATE_ARN: ${{ env.STAGING_CDK_CERTIFICATE_ARN }} # Staging-specific certificate | ||
CDK_DEFAULT_ACCOUNT: ${{ env.STAGING_CDK_DEFAULT_ACCOUNT }} # Staging-specific AWS account | ||
CDK_DEFAULT_REGION: ${{ env.CDK_DEFAULT_REGION }} | ||
CDK_DOMAIN_NAME: ${{ env.STAGING_CDK_DOMAIN_NAME }} # Staging-specific domain | ||
run: cdk deploy --require-approval never |
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