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 c1ffbed commit 90a78d2
Showing 1 changed file with 18 additions and 35 deletions.
53 changes: 18 additions & 35 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#name: HybridJGS-FE
#on:
# push:
# branches:
# - test/gitAction
#
#jobs:
# build:
# name: HybridJGS-FE-Deploy
# runs-on: ubuntu-latest
# steps:
name: HybridJGS-FE
on:
push:
branches:
- test/gitAction

jobs:
build:
name: HybridJGS-FE-Deploy
runs-on: ubuntu-latest
steps:
# - name: Checkout source code
# uses: actions/checkout@main
#
Expand All @@ -17,35 +17,18 @@
#
# - name: Build
# run: npm run build

# - 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:
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# run: aws s3 sync --region ap-northeast-2 build s3://hybridjgs-frontend --delete
#
- name: Deploy to S3
env:
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 dist s3://hybridjgs-frontend

# - name: Invalidate CloudFront Cache
# run: aws cloudfront create-invalidation --distribution-id

name: Upload to S3

on:
push:
branches:
- test/gitAction
jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: shallwefootball/s3-upload-action@master
with:
aws_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY}}
aws_bucket: ${{ secrets.AWS_BUCKET }}
source_dir: 'client'

0 comments on commit 90a78d2

Please sign in to comment.