fix: updated logging bucket ACL settings in CDK to handle log deliver… #245
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
# This workflow is designed to build and synthesize each push to reduce risk of failing builds moving into main | |
name: Build and Synthesize | |
on: | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Generate Configuration file | |
run: echo "${DEPLOY_CONFIG}" > ./bin/config.json | |
env: | |
DEPLOY_CONFIG: ${{ vars.DEPLOY_CONFIG }} | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build project | |
run: npm run build | |
- name: Upload UI Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: built-ui | |
path: lib/user-interface/genai-newsletter-ui/dist/ | |
- name: Upload AppSync Resolver Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: built-resolver-functions | |
path: lib/api/functions/out |