This repository was archived by the owner on Nov 22, 2020. It is now read-only.
File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v2
16
+ - uses : actions/setup-node@v1
17
+ with :
18
+ node-version : 12
19
+
20
+ - run : npm run dist
16
21
17
22
- run : git config user.name "${GITHUB_ACTOR}"
18
23
- run : git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
19
- - run : git fetch
20
24
- run : git push origin `git subtree split --prefix dist stable`:master --force
Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
node_modules
3
+ dist
3
4
4
5
# local env files
5
6
.env.local
Original file line number Diff line number Diff line change 12
12
"serve" : " vue-cli-service serve" ,
13
13
"serve:production" : " vue-cli-service serve --mode production" ,
14
14
"build" : " vue-cli-service build" ,
15
- "dist" : " echo Preparing for distribution... && npm i && npm run build && git add dist && git commit -m \" Update dist files\" " ,
16
- "lint" : " vue-cli-service lint"
15
+ "dist" : " echo Preparing for distribution... && npm i && npm run build && git add dist --force && git commit -m \" Update dist files\" " ,
16
+ "lint" : " vue-cli-service lint" ,
17
+ "test" : " if test \" $NODE_ENV\" = \" workflow\" ; then echo ok; else echo no; fi"
17
18
},
18
19
"dependencies" : {
19
20
"core-js" : " ^2.6.5" ,
You can’t perform that action at this time.
0 commit comments