File tree 1 file changed +32
-1
lines changed
1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,39 @@ concurrency:
15
15
cancel-in-progress : true
16
16
17
17
jobs :
18
+ img :
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+ with :
23
+ ref : ${{ github.head_ref }}
24
+ - uses : technote-space/get-diff-action@v6
25
+ with :
26
+ PATTERNS : src/contents/**/*.md
27
+ - uses : pnpm/action-setup@v4
28
+ name : Install pnpm
29
+ with :
30
+ version : 10
31
+ run_install : false
32
+ - name : Install Node.js
33
+ uses : actions/setup-node@v4
34
+ with :
35
+ node-version : 20
36
+ cache : ' pnpm'
37
+ - name : Install dependencies
38
+ run : pnpm install
39
+ - name : Install dependencies
40
+ run : pnpm install
41
+
42
+ - name : Run Download
43
+ env :
44
+ COMMIT_ID : ${{ github.sha }}
45
+ run : |
46
+ pnpm download
47
+ pnpm convert
48
+
18
49
build :
50
+ needs : img
19
51
runs-on : ubuntu-latest
20
52
steps :
21
53
- name : Checkout repository
26
58
node-version : 20
27
59
package-manager : pnpm@latest
28
60
29
-
30
61
deploy :
31
62
needs : build
32
63
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments