You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
414 B
19 lines
414 B
1 year ago
|
name: Publish Test Artifact
|
||
|
description: Publishes a test artifact
|
||
|
|
||
|
inputs:
|
||
|
framework:
|
||
|
description: '.net framework'
|
||
|
required: true
|
||
|
runtime:
|
||
|
description: '.net runtime'
|
||
|
required: true
|
||
|
|
||
|
runs:
|
||
|
using: 'composite'
|
||
|
steps:
|
||
|
- uses: actions/upload-artifact@v4
|
||
|
with:
|
||
|
name: tests-${{ inputs.runtime }}
|
||
|
path: _tests/${{ inputs.framework }}/${{ inputs.runtime }}/publish/**/*
|