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
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ jobs:
61
61
62
62
<!-- BEGIN_AUTOGEN_INPUTS -->
63
63
64
-
- <a name="secrets"></a><a href="#user-content-secrets"><code>secrets</code></a>: _(Required)_ List of secrets to access and inject into the environment. These are
64
+
- <a name="__input_secrets"></a><a href="#user-content-__input_secrets"><code>secrets</code></a>: _(Required)_ List of secrets to access and inject into the environment. These are
65
65
comma-separated or newline-separated `OUTPUTNAME:SECRET`. Output names or
66
66
secret names that contain separators must be escaped with a backslash
67
67
(e.g. `\,` or `\\n`) unless quoted. Any leading or trailing whitespace is
@@ -89,21 +89,21 @@ jobs:
89
89
<project-id>/<secret-id>
90
90
```
91
91
92
-
- <a name="min_mask_length"></a><a href="#user-content-min_mask_length"><code>min_mask_length</code></a>: _(Optional, default: `4`)_ Minimum line length for a secret to be masked. Extremely short secrets
92
+
- <a name="__input_min_mask_length"></a><a href="#user-content-__input_min_mask_length"><code>min_mask_length</code></a>: _(Optional, default: `4`)_ Minimum line length for a secret to be masked. Extremely short secrets
93
93
(e.g. `{` or `a`) can make GitHub Actions log output unreadable. This is
94
94
especially important for multi-line secrets, since each line of the secret
95
95
is masked independently.
96
96
97
-
- <a name="export_to_environment"></a><a href="#user-content-export_to_environment"><code>export_to_environment</code></a>: _(Optional)_ Make the fetched secrets additionally available as environment variables.
97
+
- <a name="__input_export_to_environment"></a><a href="#user-content-__input_export_to_environment"><code>export_to_environment</code></a>: _(Optional)_ Make the fetched secrets additionally available as environment variables.
98
98
99
-
- <a name="encoding"></a><a href="#user-content-encoding"><code>encoding</code></a>: _(Optional, default: `utf8`)_ Encoding in which secrets will be exported into outputs (and environment
99
+
- <a name="__input_encoding"></a><a href="#user-content-__input_encoding"><code>encoding</code></a>: _(Optional, default: `utf8`)_ Encoding in which secrets will be exported into outputs (and environment
100
100
variables if `export_to_environment` is true). For secrets that cannot be
101
101
represented in text, such as encryption key bytes, choose an encoding that
102
102
has a safe character such as `base64` or `hex`. For more information about
103
103
available encoding types, please see the [Node.js Buffer and character
- <a name="universe"></a><a href="#user-content-universe"><code>universe</code></a>: _(Optional, default: `googleapis.com`)_ The Google Cloud universe to use for constructing API endpoints. The
106
+
- <a name="__input_universe"></a><a href="#user-content-__input_universe"><code>universe</code></a>: _(Optional, default: `googleapis.com`)_ The Google Cloud universe to use for constructing API endpoints. The
107
107
default universe is "googleapis.com", which corresponds to
108
108
https://cloud.google.com. Trusted Partner Cloud and Google Distributed
109
109
Hosted Cloud should set this to their universe address.
@@ -116,7 +116,7 @@ jobs:
116
116
117
117
<!-- BEGIN_AUTOGEN_OUTPUTS -->
118
118
119
-
- `secrets`: Each secret is prefixed with an output name. The secret's resolved access
119
+
- <a name="__output_secrets"></a><a href="#user-content-__output_secrets"><code>secrets</code></a>: Each secret is prefixed with an output name. The secret's resolved access
120
120
value will be available at that output in future build steps. For example:
0 commit comments