File tree 1 file changed +9
-3
lines changed
.github/_workflow-samples
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -58,15 +58,21 @@ jobs:
58
58
- name : Checkout
59
59
uses : actions/checkout@v2
60
60
61
- - name : Restore dist cache
61
+ - name : Restore node_modules
62
62
uses : actions/cache@v2
63
63
id : cache-node-modules
64
+ with :
65
+ path : node_modules
66
+ key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
67
+
68
+ - name : Restore dist cache
69
+ uses : actions/cache@v2
70
+ id : cache-dist
64
71
with :
65
72
path : dist
66
73
key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
67
74
68
75
- name : Deploy to Surge
69
76
run : |
70
77
cp ./dist/index.html ./dist/200.html
71
- npm install -g surge
72
- surge ./dist ${{ env.SURGE_DOMAIN }} --token ${{ secrets.SURGE_TOKEN }}
78
+ node_modules/surge/lib/cli.js ./dist ${{ env.SURGE_DOMAIN }} --token ${{ secrets.SURGE_TOKEN }}
You can’t perform that action at this time.
0 commit comments