From d0a23ee06a17b3990707c7013bf026be88eec2df Mon Sep 17 00:00:00 2001 From: wangkun Date: Sun, 31 May 2020 23:25:40 +0800 Subject: [PATCH] Fix deploy Signed-off-by: wangkun --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e076797..4c7faf5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,11 +12,11 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 - run: | - npx yalc publish && cd example/web && npx yalc update - npm install && npm run build && npm run export + npx yalc publish && cd example/web && npx yalc update + npm install && npm run build && npm run export - uses: JamesIves/github-pages-deploy-action@releases/v3 with: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN_IN_REPO }} BASE_BRANCH: master # The branch the action should deploy from. BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: . # The folder the action should deploy. + FOLDER: example/web/out # The folder the action should deploy.