We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926d416 commit 9841ae7Copy full SHA for 9841ae7
.github/workflows/publish.yml
@@ -8,9 +8,8 @@ jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
11
- - name: Checkout
12
- uses: actions/checkout@v1
13
- uses: actions/setup-node@v1
+ - uses: actions/checkout@v1
+ - uses: actions/setup-node@v1
14
with:
15
node-version: 12
16
registry-url: https://registry.npmjs.org/
@@ -25,16 +24,15 @@ jobs:
25
24
run: |
26
yarn install --frozen-lock-file
27
yarn build
28
-
+
29
- name: Deploy demo page
30
uses: JamesIves/[email protected]
31
- working-directory: example
32
33
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
- BRANCH: gh-pages
35
- FOLDER: dist
+ BRANCH: gh-pages
+ FOLDER: example/dist
36
CLEAN: true
37
38
- name: Publish
39
run: npm publish
40
env:
0 commit comments