Torque3D/.github/workflows/actions/upload-artifact/action.yml
2023-07-25 19:01:56 +01:00

20 lines
558 B
YAML

name: Upload Torque Test Report
description: Upload Torques unit test artifact.
inputs:
name:
description: The name of the unit test.
default: "${{github.job}}"
path:
description: The path to the upload.
required: true
default: "**/My Projects/Torque3D/game/test_detail.xml"
runs:
using: "composite"
steps:
name: Upload Torque Test Report
uses: actions/upload-artifact@v3
with:
name: ${{inputs.name}}
path: ${{inputs.path}}
retention-days: 1