From d8ddce4ce077501575afa4527531eda3e91f3ec8 Mon Sep 17 00:00:00 2001 From: ivanmilevtues Date: Tue, 24 Jun 2025 01:03:07 +0200 Subject: [PATCH] changes --- .github/workflows/update-docs.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index cfdad19..d24b82d 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -1,4 +1,4 @@ -name: Update Documentation +name: Update Codeboarding Documentation on: workflow_dispatch: @@ -60,13 +60,14 @@ jobs: - name: Fetch CodeBoarding Documentation id: codeboarding - uses: ./ - with: - repository_url: ${{ github.event.inputs.repository_url }} - source_branch: ${{ steps.set-branches.outputs.source_branch }} - target_branch: ${{ steps.set-branches.outputs.target_branch }} - output_directory: '.codeboarding' - output_format: ${{ github.event.inputs.output_format || '.md' }} + run: | + pip install . + codeboarding \ + --repository-url "${{ github.event.inputs.repository_url }}" \ + --source-branch "${{ steps.set-branches.outputs.source_branch }}" \ + --target-branch "${{ steps.set-branches.outputs.target_branch }}" \ + --output-directory ".codeboarding" \ + --output-format "${{ github.event.inputs.output_format || '.md' }}" - name: Display Action Results run: |