From 18a15e1883b416ddb7e8a5b5bcbab5708dc2f32b Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Tue, 16 Jan 2024 11:23:52 -0600 Subject: [PATCH] Handle oddball characters in branch names (#202) Should resolve the issue reported in https://github.com/Roche/crmPack/actions/runs/7543907656/job/20535987133 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/build-check-install.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-check-install.yaml b/.github/workflows/build-check-install.yaml index 2320028e..803bc35e 100644 --- a/.github/workflows/build-check-install.yaml +++ b/.github/workflows/build-check-install.yaml @@ -587,8 +587,8 @@ jobs: git config pull.rebase false git pull origin ${{ env.junit_xml_storage }} || true cp ../../${{ env.PKGNAME }}.Rcheck/tests/testthat/junit-result.xml \ - ./${{ env.diff_storage_branch }}/junit-result.xml - git add -f "${{ env.diff_storage_branch }}/junit-result.xml" + './${{ env.diff_storage_branch }}/junit-result.xml' + git add -f '${{ env.diff_storage_branch }}/junit-result.xml' git commit -m "Add/Update JUnit report: ${{ github.sha }}" || true shell: bash