Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ jobs:
- run: yarn install --immutable
- run: yarn workspace @vc-shell/docs-sync build
- name: Run sync
env:
WORKSPACE_DIR: ${{ github.workspace }}
run: |
yarn workspace @vc-shell/docs-sync exec docs-sync sync \
--target ./vc-docs \
--report ./sync-report.md
--target "$WORKSPACE_DIR/vc-docs" \
--report "$WORKSPACE_DIR/sync-report.md"
- name: Open PR
env:
GH_TOKEN: ${{ secrets.REPO_TOKEN }}
Expand Down Expand Up @@ -82,5 +84,5 @@ jobs:
--base "$BASE" \
--head "$BRANCH" \
--title "$TITLE" \
--body-file ../sync-report.md \
--body-file "$GITHUB_WORKSPACE/sync-report.md" \
--label auto-generated
Loading