Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Parameters
| pubkeys | *none* | Absolute paths of extra public key files (RFC4880 format), separated by whitespace
| check-sig | true | Whether to check the setup.ini signature
| add-to-path | true | Whether to add Cygwin's `/bin` directory to the system `PATH`
| packages-dir | C:\cygwin-packages | Directory to store downloaded packages
| allow-test-packages | false | Consider package versions marked test for installation
| check-hash | true | Whether to check the hash of the downloaded Cygwin installer.

Expand Down
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ inputs:
description: Should Cygwin's bin directory be added to the system PATH?
required: false
default: 'true'
packages-dir:
description: Packages directory
required: false
default: C:\cygwin-packages
allow-test-packages:
description: Consider package versions marked test
required: false
Expand Down Expand Up @@ -85,7 +89,7 @@ runs:

$args = @(
'-qnO',
'-l', 'C:\cygwin-packages',
'-l', '${{ inputs.packages-dir }}',
'-R', '${{ inputs.install-dir }}'
)

Expand Down