setup-scoop action installs scoop and update PATH for GitHub Actions workflow on Windows environment.
- Put codes like this into your workflow
- uses: MinoruSekine/setup-scoop@v1
- Parameters can be specified by
with: like this
with:
add_extras_bucket: 'true'
scoop_checkup: 'true'
- If
true (default), scoop will be installed
- If
false, scoop will not be installed
- For example, it is unnecessary to install scoop because cached
~/scoop/ will be recovered
add_extras_bucket
- If
true, extras bucket will be added
- If
false (default), it will not
- If
true, nonportable bucket will be added
- If
false (default), it will not
- If
true (default), scoop update will be processed after installation
- If
false, it will not
- If
true, scoop checkup will be processed after installation
- If
false (default), it will not
- If
true (default), path to scoop will be added into environment variable PATH
- If
false, environment variable PATH will not be updated