Skip to content

Commit

Permalink
ci: fix invalid characters in artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniAkash committed Mar 26, 2024
1 parent 1511183 commit b32bed9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,14 @@ jobs:
env:
VITE_CLARIFAI_USER_ID: ${{ secrets.VITE_CLARIFAI_USER_ID }}
VITE_CLARIFAI_PAT: ${{ secrets.VITE_CLARIFAI_PAT }}
- name: Prepare Branch Name
id: prepare
run: |
echo "CLEAN_BRANCH=$(echo '${{ matrix.branch }}' | sed 's/[":<>|*?\r\n\\\/]/-/g')" >> $GITHUB_ENV
- name: "Upload Coverage"
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.branch }}
name: coverage-${{ env.CLEAN_BRANCH }}
path: coverage

report-coverage:
Expand Down

0 comments on commit b32bed9

Please sign in to comment.