From d8687ab68246fa5e3601463e76c8849aec8a27b4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 24 Dec 2023 10:53:48 -0800 Subject: [PATCH] Update action.yml --- .github/actions/package/action.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/actions/package/action.yml diff --git a/.github/actions/package/action.yml b/.github/actions/package/action.yml new file mode 100644 index 000000000..5b8ebe520 --- /dev/null +++ b/.github/actions/package/action.yml @@ -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 \ No newline at end of file