We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a48606a commit 2a94de2Copy full SHA for 2a94de2
.github/workflows/publish.yml
@@ -38,12 +38,12 @@ jobs:
38
path: bucket-docs
39
- name: Copy generated docs to docs repo
40
run: |
41
- rm -rf bucket-docs/sdk-docs
42
- cp -R dist/docs bucket-docs/sdk-docs
+ rm -rf bucket-docs/sdk
+ cp -R dist/docs bucket-docs/sdk
43
- name: Commit and push changes
44
45
cd bucket-docs
46
git config user.name "github-actions[bot]"
47
git config user.email "github-actions[bot]@bucket.co"
48
- git add sdk-docs
+ git add sdk
49
git commit -m "Update documentation" && git push || echo "No docs changes to commit"
0 commit comments