From f6e7624fb89417f1ffaa1abf641d3a5308cbd6b9 Mon Sep 17 00:00:00 2001 From: Arswarog Date: Sat, 13 Jun 2026 21:21:19 +0300 Subject: [PATCH] wip --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 2197c3f..719993d 100644 --- a/action.yml +++ b/action.yml @@ -42,7 +42,7 @@ runs: - name: Copy docs into Docusaurus shell: bash run: | - DOCUSAURUS_DIR="${{ github.action_path }}docusaurus" + DOCUSAURUS_DIR="${{ github.action_path }}/docusaurus" rm -rf "${DOCUSAURUS_DIR}/docs" cp -r "${{ inputs.docs-path }}" "${DOCUSAURUS_DIR}/docs" cp "${{ github.workspace }}/.docuservix.yml" "${DOCUSAURUS_DIR}" @@ -50,12 +50,12 @@ runs: - name: Install Docusaurus dependencies shell: bash - working-directory: ${{ github.action_path }}docusaurus + working-directory: ${{ github.action_path }}/docusaurus run: yarn install --frozen-lockfile - name: Build docs shell: bash - working-directory: ${{ github.action_path }}docusaurus + working-directory: ${{ github.action_path }}/docusaurus run: yarn docusaurus build --out-dir ${{ github.workspace }}/generated-docs - name: Upload to S3