File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,20 +21,24 @@ jobs:
21
21
steps :
22
22
- name : Checkout Code
23
23
uses : actions/checkout@v4
24
+
24
25
- uses : actions/setup-node@v4
25
26
with :
26
27
node-version : ' 18.x'
28
+
27
29
- name : Install Dependencies
28
30
run : npm install
31
+
29
32
- name : Compile
30
33
run : |
31
34
npm i -g @vercel/ncc
32
35
ncc build index.js --license licenses.txt
36
+
33
37
- name : Configure git
34
- - id : config_git
35
- - run : |
38
+ run : |
36
39
git config user.name 'github-actions[bot]'
37
40
git config user.email 'github-actions[bot]@users.noreply.github.com'
41
+
38
42
- name : Compose Release Tag
39
43
id : release_tag
40
44
run : |
51
55
echo "TAG: $TAG"
52
56
echo "TAG=$TAG" >> $GITHUB_OUTPUT
53
57
echo "SHA=$SHA" >> $GITHUB_OUTPUT
58
+
54
59
- name : Commit Dist Files
55
60
id : commit_dist_files
56
61
run : |
You can’t perform that action at this time.
0 commit comments