Update action.yml
This commit is contained in:
parent
fe93e85a3f
commit
d8687ab682
|
@ -0,0 +1,19 @@
|
||||||
|
# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
|
||||||
|
|
||||||
|
name: Set up environment
|
||||||
|
description: Runs setup actions and installs packages
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
framework:
|
||||||
|
description: '.net framework'
|
||||||
|
required: true
|
||||||
|
runtime:
|
||||||
|
description: '.net runtime'
|
||||||
|
required: true
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
echo "Packaging ${{inputs.framework}} ${{inputs.runtime}}"
|
||||||
|
shell: bash
|
Loading…
Reference in New Issue