-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub Actions failed due to new build workflow requiring config.json file during build and not just during synth
- Loading branch information
1 parent
aa13981
commit ba4dd53
Showing
12 changed files
with
44 additions
and
255 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,76 +1,37 @@ | ||
# 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: | ||
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: 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 | ||
|
||
synthesis: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Download UI Artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: built-ui | ||
path: lib/user-interface/genai-newsletter-ui/dist/ | ||
merge-multiple: true | ||
|
||
- name: Download Resolver Function Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: built-resolver-functions | ||
path: lib/api/functions/out/ | ||
merge-multiple: true | ||
|
||
- name: Generate Configuration file | ||
run: echo "${DEPLOY_CONFIG}" > ./bin/config.json | ||
env: | ||
DEPLOY_CONFIG: ${{ vars.DEPLOY_CONFIG }} | ||
|
||
- name: Synthesize CDK | ||
run: npx cdk synth | ||
|
||
- 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: 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 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | ||
|
||
name: pull-request-lint | ||
on: | ||
pull_request_target: | ||
|
@@ -17,7 +15,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' | ||
if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') | ||
steps: | ||
- uses: amannn/[email protected] | ||
env: | ||
|
@@ -28,3 +26,5 @@ jobs: | |
fix | ||
chore | ||
requireScope: false | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.