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
|`directory`| Yes | Directory containing built assets (e.g., `dist`) |
17
-
|`env-id`| Yes | PostHog environment ID. See [environment settings](https://app.posthog.com/settings/environment#variables)|
18
-
|`cli-token`| Yes | PostHog CLI token with error tracking write scope. See [API key settings](https://app.posthog.com/settings/user-api-keys#variables)|
19
-
|`project`| No | Project identifier. If not provided, the action tries to read the Git repository name. If it cannot determine a value, the action fails |
20
-
|`version`| No | Release/version (e.g., commit SHA). If not provided, the action uses the current commit SHA. If it cannot determine a value, the action fails |
21
-
|`host`| No | PostHog host URL. If you use the US cloud, you don't need to set this. For the EU cloud, set `https://eu.posthog.com`|
|`directory`| Yes | Directory containing built assets (e.g., `dist`) |
17
+
|`env-id`| Yes | PostHog environment ID. See [environment settings](https://app.posthog.com/settings/environment#variables)|
18
+
|`cli-token`| Yes | PostHog CLI token with error tracking write scope. See [API key settings](https://app.posthog.com/settings/user-api-keys#variables)|
19
+
|`project`| No | Project identifier. If not provided, the action tries to read the Git repository name. If it cannot determine a value, the action fails |
20
+
|`version`| No | Release/version (e.g., commit SHA). If not provided, the action uses the current commit SHA. If it cannot determine a value, the action fails |
21
+
|`host`| No | PostHog host URL. If you use the US cloud, you don't need to set this. For the EU cloud, set `https://eu.posthog.com`|
22
+
|`delete-after-upload`| No | Whether to delete the source map files after uploading them (default: `false`) |
23
+
|`skip-ssl-verification`| No | Whether to skip SSL verification when uploading chunks - only use when using self-signed certificates for self-deployed instances (default: `false`) |
24
+
|`batch-size`| No | The maximum number of chunks to upload in a single batch (default: 50) |
25
+
|`ignore`| No | One or more directory glob patterns to ignore (comma-separated, e.g., `node_modules,*.test.js`) |
22
26
23
27
## Example usage
24
28
@@ -58,4 +62,16 @@ jobs:
58
62
59
63
# If the current Git commit is not accessible, set the version explicitly
60
64
# version: 1.2.3
65
+
66
+
# Delete source map files after uploading
67
+
# delete-after-upload: true
68
+
69
+
# Skip SSL verification (only for self-signed certificates)
0 commit comments