File tree Expand file tree Collapse file tree 1 file changed +8
-20
lines changed
Expand file tree Collapse file tree 1 file changed +8
-20
lines changed Original file line number Diff line number Diff line change @@ -13,27 +13,15 @@ jobs:
1313 build :
1414 runs-on : ubuntu-latest
1515 steps :
16+ - uses : actions/checkout@v4
17+ - name : Fetch deps
18+ run : yarn
1619 - name : Build
17- runs-on : ubuntu-latest
18-
19- steps :
20- - name : Checkout repo
21- uses : actions/checkout@v3
22-
23- - name : Setup Node
24- uses : actions/setup-node@v3
25-
26- - name : Install dependencies
27- uses : bahmutov/npm-install@v1
28-
29- - name : Build project
30- run : npm run build
31-
32- - name : Upload production-ready build files
33- uses : actions/upload-artifact@v3
34- with :
35- name : production-files
36- path : ./dist
20+ run : yarn build
21+ - name : Upload artifact
22+ uses : actions/upload-pages-artifact@v3
23+ with :
24+ path : ./dist
3725
3826 deploy :
3927 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments