diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index e0aaba02..66ccf878 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -20,7 +20,6 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18 - cache: npm - name: Install dependencies run: npm ci @@ -34,7 +33,7 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} # Build output to publish to the `gh-pages` branch: - publish_dir: ./build + publish_dir: ./docs/build # The following lines assign commit authorship to the official # GH-Actions bot for deploys to `gh-pages` branch: # https://github.com/actions/checkout/issues/13#issuecomment-724415212 diff --git a/.github/workflows/test-deploy-docs.yml b/.github/workflows/test-deploy-docs.yml index 46b5b908..35b069c3 100644 --- a/.github/workflows/test-deploy-docs.yml +++ b/.github/workflows/test-deploy-docs.yml @@ -20,7 +20,6 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18 - cache: npm - name: Install dependencies run: npm ci