diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 214411e2..625e10af 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -13,14 +13,13 @@ jobs: uses: actions/checkout@v3 - name: Install uses: borales/actions-yarn@v3.0.0 - working-directory: website with: - cmd: install # will run `yarn install` command + cmd: --cwd website install # will run `yarn install` command - name: Build uses: borales/actions-yarn@v3.0.0 working-directory: website with: - cmd: install # will run `yarn install` command + cmd: --cwd website build # will run `yarn build` command - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: