Skip to content

Commit

Permalink
Handle oddball characters in branch names (#202)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
cicdguy and github-actions[bot] committed Jan 16, 2024
1 parent 79f9a9b commit 18a15e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 18a15e1

Please sign in to comment.