Update action.yml

This commit is contained in:
Mark McDowall 2023-12-24 10:53:48 -08:00 committed by GitHub
parent fe93e85a3f
commit d8687ab682
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/actions/package/action.yml vendored Normal file
View File

@ -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