File tree Expand file tree Collapse file tree 2 files changed +25
-31
lines changed Expand file tree Collapse file tree 2 files changed +25
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33
33
yarn lerna publish --yes from-package --no-verify-access
34
34
env :
35
35
NODE_AUTH_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
36
+
37
+ gh-pages :
38
+ runs-on : ubuntu-latest
39
+ steps :
40
+ - name : Checkout 🛎️
41
+ uses : actions/checkout@v3
42
+ - name : Setup Node
43
+ uses : actions/setup-node@v3
44
+ - name : Get yarn cache directory path
45
+ id : yarn-cache-dir-path
46
+ run : echo "::set-output name=dir::$(yarn config get cacheFolder)"
47
+ - name : Yarn Cache
48
+
49
+ with :
50
+ path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
51
+ key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
52
+ restore-keys : |
53
+ ${{ runner.os }}-modules-
54
+ - run : yarn install
55
+ - run : yarn build
56
+ - name : Deploy 🚀
57
+
58
+ with :
59
+ branch : gh-pages
60
+ folder : packages/example/build/
You can’t perform that action at this time.
0 commit comments