From 8421b880c91f0f7aaac37da519c576e7f550bcdb Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Tue, 10 Sep 2024 18:22:04 +0200 Subject: [PATCH] fix add path Signed-off-by: Andreas Heinrich --- github-actions/deploy-ci-artifact/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-actions/deploy-ci-artifact/action.yaml b/github-actions/deploy-ci-artifact/action.yaml index b0060b1..4475714 100644 --- a/github-actions/deploy-ci-artifact/action.yaml +++ b/github-actions/deploy-ci-artifact/action.yaml @@ -65,7 +65,7 @@ runs: - name: Commit and push logs shell: bash run: | - git add ${{ steps.determine_target_path.outputs.target_path }} + git add docs/${{ steps.determine_target_path.outputs.target_path }} if [ "${{ inputs.deploy_global_artifact }}" = "true" ]; then commit_message="Deploy global artifact and remove old one: ${{ inputs.source_repo }}/${{ inputs.artifact_name }}" else