-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathaction.yml
More file actions
58 lines (58 loc) · 2.22 KB
/
Copy pathaction.yml
File metadata and controls
58 lines (58 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: 'Setup Git for Windows SDK'
description: 'Set up an environment to develop Git for Windows'
author: 'Johannes Schindelin'
branding:
icon: fast-forward
color: blue
inputs:
flavor:
required: false
description: 'The subset (if any) of the SDK: minimal, makepkg-git, build-installers, or full'
default: 'minimal'
architecture:
required: false
description: >
The architecture of the SDK: x86_64, i686, aarch64, or ucrt64.
Note that "aarch64" only supports the "full" flavor for now.
"ucrt64" selects the UCRT64 variant of git-sdk-64; while the
MINGW64-to-UCRT64 migration is in progress it is cloned from a
transitional "ucrt64" branch that will eventually replace "main",
at which point "x86_64" itself will materialise a UCRT64 SDK.
default: 'x86_64'
msys:
required: false
description: 'Whether to start in MSYS mode (defaults to false)'
default: 'false'
path:
required: false
description: 'Where to write the SDK files'
default: ''
cleanup:
required: false
description: 'Whether to clean up SDK files. This is only needed on self-hosted runners that are reused for multiple jobs.'
default: 'false'
verbose:
required: false
description: 'Whether to log files as they are extracted'
default: '250'
cache:
required: false
description: >
Use @actions/cache to accelerate this Action.
Note: GitHub Actions caches are shared across branches and
workflows within a repository, which makes them susceptible
to cache-poisoning attacks (see e.g. Cacheract,
https://github.com/AdnaneKhan/Cacheract). Caching is
therefore disabled by default.
default: 'false'
github-token:
description: >
Personal access token (PAT) used to call into GitHub's REST API.
We recommend using a service account with the least permissions necessary.
Also when generating a new PAT, select the least scopes necessary.
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
default: ${{ github.token }}
runs:
using: 'node24'
main: 'dist/index.js'
post: 'dist/index.js'