mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-27 15:25:40 +00:00
update all actions
-updated all actions that were causing issues -changed macos to 13 instead of latest until file issue is sorted
This commit is contained in:
parent
4e88c4c050
commit
673f983404
8 changed files with 20 additions and 48 deletions
23
.github/actions/test-results/action.yml
vendored
23
.github/actions/test-results/action.yml
vendored
|
|
@ -1,23 +0,0 @@
|
|||
name: Build Torque Test Report
|
||||
description: Upload Torques unit test artifact.
|
||||
inputs:
|
||||
name:
|
||||
description: The name of the unit test.
|
||||
default: "${{github.job}}"
|
||||
artifact-name:
|
||||
description: The name of the artifact.
|
||||
required: true
|
||||
path:
|
||||
description: The path to the upload.
|
||||
required: true
|
||||
default: "**/My Projects/Torque3D/game/test_detail.xml"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Test Reporter
|
||||
uses: phoenix-actions/test-reporting@v12
|
||||
with:
|
||||
artifact: ${{inputs.artifact-name}}
|
||||
name: ${{inputs.name}}
|
||||
path: ${{inputs.path}}
|
||||
reporter: java-junit
|
||||
5
.github/actions/upload-artifact/action.yml
vendored
5
.github/actions/upload-artifact/action.yml
vendored
|
|
@ -7,13 +7,14 @@ inputs:
|
|||
path:
|
||||
description: The path to the upload.
|
||||
required: true
|
||||
default: "**/My Projects/Torque3D/game/test_detail.xml"
|
||||
default: "Torque3D/My Projects/Torque3D/game/test_detail.xml"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Upload Torque Test Report
|
||||
uses: actions/upload-artifact@v3.1.2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{inputs.name}}
|
||||
path: ${{inputs.path}}
|
||||
retention-days: 1
|
||||
overwrite: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue