generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 277
Description
I have two step
...
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
path: "**/test-results*.trx"
...and
name: report
on:
workflow_run:
workflows:
- build
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results
name: dotnet tests
path: '**/test-results*.trx'
reporter: dotnet-trxtrx file is successfully uploaded, inspecting the URL of test reporter action, it offers me to download the file, but the action fails
Report fails with error
HTTPError: Response code 400 (Authentication information is not given in the correct format. Check the value of Authorization header.)
Additional info: it worked, but after I bumped the version of the upload-artifacts (among other), somehow stopped working...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels