-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
0b0870f
commit d4e5e1a
Showing
1 changed file
with
28 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: aws s3 + cloudfront CI/CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
Deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Node 설치 | ||
uses: actions/setup-node@v4 | ||
|
||
- name: Github Repository 파일 불러오기 | ||
uses: actions/checkout@v4 | ||
|
||
- name: nvm을 활용한 프로젝트의 Node 설치 | ||
uses: irby/setup-node-nvm@master | ||
|
||
- name: 의존성 패키지 다운 | ||
run: | | ||
npm install -g yarn | ||
- name: 빌드 | ||
run: | | ||
yarn build |