added the rest of the actions
This commit is contained in:
24
.gdunit4_action/upload-test-report/action.yml
Normal file
24
.gdunit4_action/upload-test-report/action.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
name: 'upload test report'
|
||||
description: 'Uploads the GdUnit test reports'
|
||||
|
||||
inputs:
|
||||
report-name:
|
||||
description: 'Name of the report to be upload.'
|
||||
required: true
|
||||
project_dir:
|
||||
description: 'The working directory to collect the reports.'
|
||||
required: true
|
||||
default: './'
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: 'Upload Test Artifacts'
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
retention-days: 10
|
||||
name: artifact_${{ inputs.report-name }}
|
||||
path: |
|
||||
${{ inputs.project_dir }}reports/**
|
||||
/var/lib/systemd/coredump/**
|
||||
/var/log/syslog
|
||||
Reference in New Issue
Block a user