Torque3D/.github/actions/upload-artifact/action.yml
marauder2k7 673f983404 update all actions
-updated all actions that were causing issues
-changed macos to 13 instead of latest until file issue is sorted
2024-04-28 21:14:26 +01:00

21 lines
592 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: "Torque3D/My Projects/Torque3D/game/test_detail.xml"
runs:
using: "composite"
steps:
- name: Upload Torque Test Report
uses: actions/upload-artifact@v4
with:
name: ${{inputs.name}}
path: ${{inputs.path}}
retention-days: 1
overwrite: true