Skip to content

Commit 47208f1

Browse files
authored
Simplify workflow using npm instead (seanprashad#194)
1 parent 309f194 commit 47208f1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/github-pages.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@ jobs:
1616
- name: Checkout 🛎️
1717
uses: actions/checkout@v3
1818

19-
- name: Install Node
19+
- name: Install Node ⚛️
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: '14.x'
22+
node-version: '14'
2323

2424
- name: Install Packages and Build 🔧
2525
run: |
2626
npm ci
2727
npm run build
2828
2929
- name: Deploy 🚀
30-
uses: JamesIves/github-pages-deploy-action@v4
31-
with:
32-
folder: build
30+
run: |
31+
npm run deploy

0 commit comments

Comments
 (0)