From 4d14f6133e27a605e8426ed2244c46fce9355096 Mon Sep 17 00:00:00 2001 From: Matteo Landi Date: Mon, 18 Oct 2021 20:01:38 +0200 Subject: [PATCH] Add input: `roswell-version` If not specified, the action will install the most recent version of Roswell which is known to be compatible with this action, i.e. v21.06.14.110; however, users can set this input equal to "master", and the action will install the latest version of Roswell instead. --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 07f2953..d66b378 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,10 @@ name: 'Setup Common Lisp' inputs: + roswell-version: + description: 'Roswell version to install. If not specified, then latest version will be used' + required: false + default: 'master' asdf-system: description: 'ASDF system to install' required: false @@ -36,7 +40,7 @@ runs: brew install automake autoconf curl fi - curl -L https://raw.githubusercontent.com/svetlyak40wt/roswell/patches/scripts/install-for-ci.sh | sh + curl -L https://raw.githubusercontent.com/roswell/roswell/${{ inputs.roswell-version }}/scripts/install-for-ci.sh | sh echo $HOME/.roswell/bin >> $GITHUB_PATH echo ::endgroup::