From 8224f6d3dda8f1773c382e972855c363a0298d01 Mon Sep 17 00:00:00 2001 From: Matus Vacula Date: Tue, 18 Feb 2025 16:16:37 +0100 Subject: [PATCH] chore: change docs destination --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5eec38c5..bf50c87b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,12 +38,12 @@ jobs: path: bucket-docs - name: Copy generated docs to docs repo run: | - rm -rf bucket-docs/sdk-docs - cp -R dist/docs bucket-docs/sdk-docs + rm -rf bucket-docs/sdk + cp -R dist/docs bucket-docs/sdk - name: Commit and push changes run: | cd bucket-docs git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@bucket.co" - git add sdk-docs + git add sdk git commit -m "Update documentation" && git push || echo "No docs changes to commit"