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
+18-17Lines changed: 18 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,23 +60,24 @@ Adding the following to your workflow will create a new Sentry release and tell
60
60
61
61
#### Parameters
62
62
63
-
|name|description|default|
64
-
|---|---|---|
65
-
|`environment`|Set the environment for this release. E.g. "production" or "staging". Omit to skip adding deploy to release.|-|
66
-
|`finalize`|When false, omit marking the release as finalized and released.|`true`|
67
-
|`ignore_missing`|When the flag is set and the previous release commit was not found in the repository, will create a release with the default commits count instead of failing the command.|`false`|
68
-
|`ignore_empty`|When the flag is set, command will not fail and just exit silently if no new commits for a given release have been found.|`false`|
69
-
|`sourcemaps`|Space-separated list of paths to JavaScript sourcemaps. Omit to skip uploading sourcemaps.|-|
70
-
|`dist`|Unique identifier for the distribution, used to further segment your release. Usually your build number.|-|
71
-
|`started_at`|Unix timestamp of the release start date. Omit for current time.|-|
72
-
|`version`|Identifier that uniquely identifies the releases. _Note: the `refs/tags/` prefix is automatically stripped when `version` is `github.ref`._|<code>${{ github.sha }}</code>|
73
-
|`version_prefix`|Value prepended to auto-generated version. For example "v".|-|
74
-
|`set_commits`|Specify whether to set commits for the release. Either "auto" or "skip".|"auto"|
75
-
|`projects`|Space-separated list of paths of projects. When omitted, falls back to the environment variable `SENTRY_PROJECT` to determine the project.|-|
76
-
|`url_prefix`|Adds a prefix to source map urls after stripping them.|-|
77
-
|`strip_common_prefix`|Will remove a common prefix from uploaded filenames. Useful for removing a path that is build-machine-specific.|`false`|
78
-
|`working_directory`|Directory to collect sentry release information from. Useful when collecting information from a non-standard checkout directory.|-|
79
-
|`disable_telemetry`|The action sends telemetry data and crash reports to Sentry. This helps us improve the action. You can turn this off by setting this flag.|`false`|
|`environment`| Set the environment for this release. E.g. "production" or "staging". Omit to skip adding deploy to release. |-|
66
+
|`inject`| Injects Debug IDs into source files and sourcemaps. We **strongly recommend** enabling this to ensure proper un-minifaction of your stacktraces. |`false`|
67
+
|`sourcemaps`| Space-separated list of paths to JavaScript sourcemaps. Omit to skip uploading sourcemaps. |-|
68
+
|`finalize`| When false, omit marking the release as finalized and released. |`true`|
69
+
|`ignore_missing`| When the flag is set and the previous release commit was not found in the repository, will create a release with the default commits count instead of failing the command. |`false`|
70
+
|`ignore_empty`| When the flag is set, command will not fail and just exit silently if no new commits for a given release have been found. |`false`|
71
+
|`dist`| Unique identifier for the distribution, used to further segment your release. Usually your build number. |-|
72
+
|`started_at`| Unix timestamp of the release start date. Omit for current time. |-|
73
+
|`version`| Identifier that uniquely identifies the releases. _Note: the `refs/tags/` prefix is automatically stripped when `version` is `github.ref`._ |<code>${{ github.sha }}</code>|
74
+
|`version_prefix`| Value prepended to auto-generated version. For example "v". |-|
75
+
|`set_commits`| Specify whether to set commits for the release. Either "auto" or "skip". |"auto"|
76
+
|`projects`| Space-separated list of paths of projects. When omitted, falls back to the environment variable `SENTRY_PROJECT` to determine the project. |-|
77
+
|`url_prefix`| Adds a prefix to source map urls after stripping them. |-|
78
+
|`strip_common_prefix`| Will remove a common prefix from uploaded filenames. Useful for removing a path that is build-machine-specific. |`false`|
79
+
|`working_directory`| Directory to collect sentry release information from. Useful when collecting information from a non-standard checkout directory. |-|
80
+
|`disable_telemetry`| The action sends telemetry data and crash reports to Sentry. This helps us improve the action. You can turn this off by setting this flag. |`false`|
Copy file name to clipboardExpand all lines: action.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ inputs:
5
5
environment:
6
6
description: 'Set the environment for this release. E.g. "production" or "staging". Omit to skip adding deploy to release.'
7
7
required: false
8
+
inject:
9
+
description: 'Injects Debug IDs into source files and sourcemaps. We strongly recommend enabling this to ensure proper un-minifaction of your stacktraces.'
10
+
required: false
8
11
sourcemaps:
9
12
description: 'Space-separated list of paths to JavaScript sourcemaps. Omit to skip uploading sourcemaps.'
0 commit comments