Skip to content

Commit 81374e7

Browse files
author
gitgitWi
committed
Fix: deploy.yml - npm install&build 수정
1 parent f981ddc commit 81374e7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,18 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v2
23+
2324
- name: Use Node.js ${{ matrix.node-version }}
2425
uses: actions/setup-node@v2
2526
with:
2627
node-version: ${{ matrix.node-version }}
2728
cache: 'npm'
28-
- run: npm install --production
29-
# - run: npm run build --if-present
29+
30+
- name: Install and Build 🔧
31+
run: |
32+
npm install --production
33+
npm run build
34+
3035
- name: Deploy
3136
uses: JamesIves/github-pages-deploy-action@4.1.4
3237
with:

0 commit comments

Comments
 (0)