-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* infra: CI Workflow 작성 * infra: Dev-CD workflow 작성
- Loading branch information
Showing
2 changed files
with
50 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,20 @@ | ||
name: FrontEnd CI | ||
|
||
on: | ||
pull_request: | ||
branches: [main, dev] | ||
# push: | ||
# branches: [main, dev] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.11.0 | ||
|
||
- run: yarn install | ||
- run: yarn build |
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,30 @@ | ||
name: FrontEnd Dev CD | ||
|
||
on: | ||
push: | ||
branches: [ "dev" ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.11.0 | ||
|
||
- run: yarn install | ||
- run: yarn build | ||
|
||
- name: S3 and CloudFront Deploy | ||
uses: Reggionick/s3-deploy@v4 | ||
with: | ||
folder: .next | ||
bucket: ${{ secrets.DEV_S3_BUCKET_NAME }} | ||
bucket-region: ${{ secrets.AWS_DEFAULT_REGION }} | ||
dist-id: ${{ secrets.DEV_CLOUDFRONT_ID }} |