File tree 1 file changed +1
-25
lines changed
1 file changed +1
-25
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
build :
9
- runs-on : ubuntu-latest
10
- steps :
11
- - name : Checkout Repository
12
- uses : actions/checkout@v3
13
-
14
- - name : Setup Node.js
15
- uses : actions/setup-node@v3
16
-
17
- - name : Install Dependencies
18
- run : yarn install
19
-
20
- - name : Build Project
21
- run : yarn build
22
-
23
- - name : Upload Build Artifacts
24
- uses : actions/upload-artifact@v4
25
- with :
26
- name : build-output
27
- path : ./dist
9
+ uses : ./.github/workflows/build.yml
28
10
29
11
deploy :
30
12
needs : build
33
15
- name : Checkout Repository
34
16
uses : actions/checkout@v3
35
17
36
- - name : Download Build Artifacts
37
- uses : actions/download-artifact@v4
38
- with :
39
- name : build-output
40
- path : ./dist
41
-
42
18
- name : Deploy to GitHub Pages
43
19
uses : peaceiris/actions-gh-pages@v4
44
20
with :
You can’t perform that action at this time.
0 commit comments