aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAdam Dinwoodie <adam@dinwoodie.org>2020-12-23 18:58:29 +0000
committerAdam Dinwoodie <adam@dinwoodie.org>2020-12-23 19:12:09 +0000
commit55df939d308d4c38fc4b2e0ad90b2c0e2f523a0a (patch)
treea89d932c0ea90e06ca66adc2dccbefdd5ff2d070
parentadd README (diff)
downloadsetup-cygwin-55df939d308d4c38fc4b2e0ad90b2c0e2f523a0a.tar.gz
setup-cygwin-55df939d308d4c38fc4b2e0ad90b2c0e2f523a0a.zip
Make CYGWIN environment variable configurable
Some users might want different behaviour from the CYGWIN environment variable, and in particular it seems reasonable to assume they don't want non-default behaviour unless they explicitly ask for it. As such, make the environment variable configurable, and default to empty. This change is not backwards compatible: prior to this change a Cygwin install will have CYGWIN=winsymlinks:nativestrict, whereas afterwards the variable will default to blank. To obtain the previous behaviour, a user would need to add `env: 'winsymlinks:nativestrict'` to the set of inputs. Fixes #1.
-rw-r--r--action.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/action.yml b/action.yml
index 797516b..02f19a9 100644
--- a/action.yml
+++ b/action.yml
@@ -13,6 +13,9 @@ inputs:
packages:
description: Packages to install, separated by a space
required: false
+ env:
+ description: Value to set as the CYGWIN environment variable
+ required: false
runs:
using: composite
@@ -27,7 +30,7 @@ runs:
New-Variable packages -Value '${{ inputs.packages}}' -Option Constant
if ($windows_host) {
- echo 'CYGWIN=winsymlinks:nativestrict' >> $env:GITHUB_ENV
+ echo 'CYGWIN=${{ inputs.env }}' >> $env:GITHUB_ENV
$choco_params = @(
'install',