-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from TEAM-FLASH/dev
Version 0.0 : 4차 배포 테스트
- Loading branch information
Showing
2 changed files
with
18 additions
and
12 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 |
---|---|---|
|
@@ -8,13 +8,16 @@ jobs: | |
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check Node v | ||
run: node -v | ||
|
||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
run: npm install -g [email protected] | ||
|
||
- name: Check pnpm version | ||
run: pnpm -v | ||
|
||
- name: Install Dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
@@ -23,23 +26,26 @@ jobs: | |
run: pnpm build | ||
|
||
- name: zip create | ||
run: zip -qq -r ./build.zip . | ||
run: zip -qq -r build.zip build/ | ||
shell: bash | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_REGION }} | ||
|
||
- name: Upload to S3 | ||
run: | | ||
aws s3 cp --region ap-northeast-2 ./build.zip s3://toucheese-team4-s3/build.zip | ||
run: aws s3 cp build.zip s3://toucheese-team4-s3/build.zip | ||
|
||
- name: Verify S3 Upload | ||
run: aws s3 ls s3://toucheese-team4-s3/ | ||
|
||
- name: Deploy | ||
run: aws deploy create-deployment | ||
--application-name TOUCHEESE-TEAM4 | ||
--deployment-config-name CodeDeployDefault.AllAtOnce | ||
--deployment-group-name TOUCHEESE-TEAM4-Deploy-Group | ||
--s3-location bucket=toucheese-team4-s3,bundleType=zip,key=build.zip | ||
run: | | ||
aws deploy create-deployment \ | ||
--application-name TOUCHEESE-TEAM4 \ | ||
--deployment-config-name CodeDeployDefault.AllAtOnce \ | ||
--deployment-group-name TOUCHEESE-TEAM4-Deploy-Group \ | ||
--s3-location bucket=toucheese-team4-s3,bundleType=zip,key=build.zip |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ cd $REPOSITORY | |
|
||
sudo pnpm install | ||
|
||
sudo npx pm2 reload all | ||
sudo pnpm exec pm2 reload all |