You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-2Lines changed: 19 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,15 @@ jobs:
23
23
24
24
### Available flavors
25
25
26
-
It supports several flavors:
26
+
This Action supports several flavors (read: subsets) of the Git for Windows SDK that can be configured like this:
27
+
28
+
```yaml
29
+
- uses: git-for-windows/setup-git-for-windows-sdk
30
+
with:
31
+
flavor: build-installers
32
+
```
33
+
34
+
The supported flavors are:
27
35
28
36
- `minimal`:
29
37
@@ -43,7 +51,16 @@ It supports several flavors:
43
51
44
52
### CPU architecture support
45
53
46
-
The Git for Windows SDK can be installed targeting `x86_64` (AKA "64-bit") and `i686` (AKA 32-bit).
54
+
Git for Windows SDK comes in variants targeting `x86_64` (AKA "64-bit") and `i686` (AKA 32-bit). The default is `x86_64` and can be overridden like this:
55
+
56
+
```yaml
57
+
- uses: git-for-windows/setup-git-for-windows-sdk
58
+
with:
59
+
flavor: build-installers
60
+
architecture: i686
61
+
```
62
+
63
+
Please note that only the `build-installers` and the `full` flavors are available for `i686`.
0 commit comments