Skip to content

Commit

Permalink
πŸ› yarn docs:build μ—λŸ¬ ν•΄κ²°
Browse files Browse the repository at this point in the history
  • Loading branch information
jun108059 committed Mar 31, 2023
1 parent 33bba93 commit 0e42e3b
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@master

- run: yarn install
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- run: yarn docs:build
- name: Install dependencies
run: yarn install

- name: Deploy
uses: peaceiris/[email protected]
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACCESS_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: docs/.vuepress/dist
- name: Build
run: yarn docs:build

- name: Deploy
uses: peaceiris/[email protected]
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACCESS_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: docs/.vuepress/dist

0 comments on commit 0e42e3b

Please sign in to comment.