generated from getsentry/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
202993b
commit 0105914
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: 'Sentry Release' | ||
description: 'GitHub Action for creating a release on Sentry' | ||
author: 'Sentry' | ||
inputs: | ||
environment: | ||
description: 'Set the environment for this release. E.g. "production" or "staging". Omit to skip adding deploy to release.' | ||
required: false | ||
sourcemaps: | ||
description: 'Space-separated list of paths to JavaScript sourcemaps. Omit to skip uploading sourcemaps.' | ||
required: false | ||
dist: | ||
description: 'Unique identifier for the distribution, used to further segment your release. Usually your build number.' | ||
required: false | ||
finalize: | ||
description: 'When false, omit marking the release as finalized and released.' | ||
default: true | ||
ignore_missing: | ||
description: '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.' | ||
required: false | ||
ignore_empty: | ||
description: 'When the flag is set, command will not fail and just exit silently if no new commits for a given release have been found.' | ||
required: false | ||
started_at: | ||
description: 'Unix timestamp of the release start date. Omit for current time.' | ||
required: false | ||
version: | ||
description: 'Identifier that uniquely identifies the releases. Omit to auto-generate one.' | ||
required: false | ||
version_prefix: | ||
description: 'Value prepended to auto-generated version.' | ||
required: false | ||
set_commits: | ||
description: 'Specify whether to set commits for the release. Either "auto" or "skip".' | ||
required: false | ||
projects: | ||
description: 'Space-separated list of projects. Defaults to the env variable "SENTRY_PROJECT" if not provided.' | ||
required: false | ||
url_prefix: | ||
description: 'Adds a prefix to source map urls after stripping them.' | ||
required: false | ||
strip_common_prefix: | ||
description: 'Will remove a common prefix from uploaded filenames. Useful for removing a path that is build-machine-specific.' | ||
required: false | ||
working_directory: | ||
description: 'Directory to collect sentry release information from. Useful when collecting information from a non-standard checkout directory.' | ||
required: false | ||
disable_telemetry: | ||
description: '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.' | ||
required: false | ||
runs: | ||
using: 'docker' | ||
# If you change this, update the use-local-dockerfile action | ||
image: 'docker://ghcr.io/getsentry/action-release-image:latest' | ||
branding: | ||
icon: 'triangle' | ||
color: 'purple' |