Skip to content

Commit

Permalink
test: actions test
Browse files Browse the repository at this point in the history
  • Loading branch information
k000927 committed Jul 26, 2024
1 parent 5cd00b0 commit 709db79
Showing 1 changed file with 13 additions and 21 deletions.
34 changes: 13 additions & 21 deletions .github/workflows/client.yml
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

0 comments on commit 709db79

Please sign in to comment.