-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
21 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 |
---|---|---|
@@ -1,34 +1,26 @@ | ||
name: HybridJGS-FE | ||
|
||
on: | ||
push: | ||
branches: | ||
- test/gitAction | ||
|
||
jobs: | ||
build: | ||
name: HybridJGS-FE-Deploy | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# - name: Checkout source code | ||
# uses: actions/checkout@main | ||
# | ||
# - name: Install Dependencies | ||
# run: npm install | ||
# | ||
# - name: Build | ||
# run: npm run build | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
|
||
# - name: Configure AWS Credentials | ||
# uses: aws-actions/configure-aws-credentials@v4 | ||
# with: | ||
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
# aws-region: ap-northeast-2 | ||
- name: Deploy to S3 | ||
env: | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
run: aws s3 cp --recursive --region ap-northeast-2 client s3://hybridjgs-frontend | ||
aws-region: ap-northeast-2 | ||
|
||
# - name: Invalidate CloudFront Cache | ||
# run: aws cloudfront create-invalidation --distribution-id | ||
- name: Deploy static site to S3 bucket | ||
run: aws s3 sync s3://hybridjsg-frontend |