-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (40 loc) · 1.38 KB
/
webpack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: NodeJS with Webpack
on:
push:
branches: ["FE"]
defaults:
run:
working-directory: ./client #default working directory
env:
AWS_REGION: ap-northeast-2
S3_BUCKET_NAME: dowajoyak.store
API_SERVER: https://server.dowajoyak.store
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Build webpack
run: |
npm i
npm run build
- name: access to secrets
run: |
echo "CX_VALUE=$CX_VALUE" >> .env
env:
CX_VALUE: ${{secrets.CX_VALUE}}
# Access Key와 Secret Access Key를 통해 권한을 확인합니다.
# 아래 코드에 Access Key와 Secret Key를 직접 작성하지 않습니다.
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} # 등록한 Github Secret이 자동으로 불려옵니다.
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # 등록한 Github Secret이 자동으로 불려옵니다.
aws-region: ap-northeast-2
# 압축한 프로젝트를 S3로 전송합니다.
- name: Upload to AWS S3
run: aws s3 cp --region ap-northeast-2 ./dist s3://$S3_BUCKET_NAME/ --recursive