From afeafc0e0b49fdca4c54517ceea0ac2b90e006d2 Mon Sep 17 00:00:00 2001 From: "Alejandro R. Mosteo" Date: Tue, 14 Sep 2021 18:08:00 +0200 Subject: [PATCH] Minor description tweaks --- README.md | 3 ++- action.yml | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3b68bc4..029c8b38 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,8 @@ GitHub action to setup Alire, the Ada/SPARK package manager, from the development branch. This action also takes care of setting up a compiler to -carry out the build. +carry out the build of Alire. However, after the action completes, Alire will +be configured to rely on the compiler configured via `alr toolchain`. ## Usage diff --git a/action.yml b/action.yml index 6c0dfa76..339cb672 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,7 @@ inputs: toolchain: description: Arguments to pass to `alr toolchain` after setup required: false - default: 'gnat_native gprbuild<2000' + default: 'gnat_native gprbuild' toolchain_dir: description: Location to install the toolchain under required: false @@ -21,5 +21,5 @@ runs: - name: Set up Alire uses: alire-project/setup-alire@latest-devel with: - toolchain: ${{ toolchain }} - toolchain_dir: ${{ toolchain_dir }} + toolchain: ${{ inputs.toolchain }} + toolchain_dir: ${{ inputs.toolchain_dir }}