-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ISOM-1293: Add CodeBuild logic #382
Merged
Merged
Conversation
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
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This was referenced Jul 28, 2024
This stack of pull requests is managed by Graphite. Learn more about stacking. |
harishv7
force-pushed
the
07-28-add_publish_endpoint
branch
from
July 29, 2024 05:21
7d96701
to
5478fe4
Compare
harishv7
force-pushed
the
07-28-add_codebuild_logic
branch
from
July 29, 2024 05:22
0976a86
to
a46c87c
Compare
harishv7
force-pushed
the
07-28-add_publish_endpoint
branch
from
July 29, 2024 08:07
5478fe4
to
3af1c1b
Compare
harishv7
force-pushed
the
07-28-add_codebuild_logic
branch
from
July 29, 2024 08:08
a46c87c
to
bdb30fa
Compare
harishv7
force-pushed
the
07-28-add_publish_endpoint
branch
from
July 31, 2024 06:46
3af1c1b
to
50d871a
Compare
harishv7
force-pushed
the
07-28-add_codebuild_logic
branch
from
July 31, 2024 06:46
bdb30fa
to
cc1b8d1
Compare
harishv7
force-pushed
the
07-28-add_publish_endpoint
branch
from
July 31, 2024 07:57
50d871a
to
ff7ac7d
Compare
harishv7
force-pushed
the
07-28-add_codebuild_logic
branch
from
July 31, 2024 07:58
cc1b8d1
to
532b2ea
Compare
harishv7
force-pushed
the
07-28-add_publish_endpoint
branch
from
July 31, 2024 08:17
ff7ac7d
to
c150004
Compare
harishv7
force-pushed
the
07-28-add_codebuild_logic
branch
from
July 31, 2024 08:18
532b2ea
to
6a42b3b
Compare
harishv7
changed the base branch from
07-28-add_publish_endpoint
to
graphite-base/382
August 12, 2024 16:44
harishv7
force-pushed
the
07-28-add_codebuild_logic
branch
from
August 12, 2024 17:30
15770bf
to
fd6b567
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TL;DR
Added a new field to the
Site
table to store the AWS CodeBuild Project ID and integrated AWS CodeBuild into the publishing process.What changed?
package.json
andpackage-lock.json
to include@aws-sdk/client-codebuild
and@aws-sdk/smithy-client
codeBuildId
fieldcodeBuildId
column to theSite
tablecodebuild.service.ts
)page.router.ts
to initiate a CodeBuild project run on page publishPublishButton.tsx
How to test?
codeBuildId
column:prisma migrate deploy
Site
recordsWhy make this change?
This change integrates AWS CodeBuild into the page publishing workflow, allowing for automated builds and deployments whenever a page is published.
TL;DR
This PR integrates AWS CodeBuild into the project and introduces new site configurations in the Prisma schema.
What changed?
@aws-sdk/client-codebuild
,@aws-sdk/smithy-client
shortName
andcodeBuildId
in theSite
modelseed.ts
to includeshortName
for seed datapage.router.ts
to initiate CodeBuild upon page publishgetSiteNameAndCodeBuildId
andsetSiteCodeBuildId
insite.service.ts
How to test?
codeBuildId
is correctly set in theSite
model.Why make this change?
The integration with AWS CodeBuild allows us to automate the build and deployment process, making the system more efficient and reliable. The new site configurations provide better structure and flexibility for site management.