All Projects → NSCoder → sentry-release

NSCoder / sentry-release

Licence: MIT License
GitHub Action for publishing a new release to Sentry.io

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to sentry-release

sentry
GitHub Actions for interacting with Sentry.io
Stars: ✭ 14 (+7.69%)
Mutual labels:  sentry-io, github-actions
sentry-releases-action
A GitHub action that creates releases for Sentry.io.
Stars: ✭ 38 (+192.31%)
Mutual labels:  sentry-io, github-actions
Setup-Nuget
Set up your GitHub Actions workflow with the latest version of Nuget.exe CLI tool
Stars: ✭ 27 (+107.69%)
Mutual labels:  github-actions
qodana-action
⚙️ Scan your Java, Kotlin, PHP, Python, JavaScript, TypeScript projects at GitHub with Qodana
Stars: ✭ 112 (+761.54%)
Mutual labels:  github-actions
autoSubmit
北京大学疫情出入校自动填报
Stars: ✭ 47 (+261.54%)
Mutual labels:  github-actions
autoupdate
A GitHub Action that auto-updates pull requests branches, whenever changes are pushed to their destination branch.
Stars: ✭ 70 (+438.46%)
Mutual labels:  github-actions
jcefbuild
Binary builds of java-cef
Stars: ✭ 160 (+1130.77%)
Mutual labels:  github-actions
cfn-lint-action
GitHub Action for interacting with CloudFormation Linter
Stars: ✭ 41 (+215.38%)
Mutual labels:  github-actions
actions-setup-perl
Setup Perl environment Action
Stars: ✭ 51 (+292.31%)
Mutual labels:  github-actions
redis-github-action
Use Redis in GitHub Actions
Stars: ✭ 56 (+330.77%)
Mutual labels:  github-actions
commit-comment
A GitHub action to create a comment for a commit on GitHub
Stars: ✭ 62 (+376.92%)
Mutual labels:  github-actions
ghaction-upx
GitHub Action for UPX, the Ultimate Packer for eXecutables
Stars: ✭ 27 (+107.69%)
Mutual labels:  github-actions
latex-action
GitHub Action to compile LaTeX documents
Stars: ✭ 123 (+846.15%)
Mutual labels:  github-actions
ghaction-import-gpg
GitHub Action to easily import a GPG key
Stars: ✭ 161 (+1138.46%)
Mutual labels:  github-actions
CIAnalyzer
A tool collecting multi CI services build data and export it for creating self-hosting build dashboard.
Stars: ✭ 52 (+300%)
Mutual labels:  github-actions
cuda-toolkit
GitHub Action to install CUDA
Stars: ✭ 34 (+161.54%)
Mutual labels:  github-actions
Github-Actions-React-Native
Github Action for React Native Build 🦊
Stars: ✭ 99 (+661.54%)
Mutual labels:  github-actions
vacation-mode-action
Limit interactions to your repository while on vacation using GitHub Actions
Stars: ✭ 73 (+461.54%)
Mutual labels:  github-actions
action-sync-node-meta
GitHub Action that syncs package.json with the repository metadata.
Stars: ✭ 25 (+92.31%)
Mutual labels:  github-actions
invalidate-cloudfront-action
Invalidate AWS CloudFront distribution paths
Stars: ✭ 84 (+546.15%)
Mutual labels:  github-actions

GitHub Action to publish new Sentry.io releases

Action wraps the Sentry CLI to publish new releases on Sentry.io.

Usage

An example workflow to release a new Sentry version:

workflow "Release a new version" {
  on = "push"
  resolves = "release version"
}

action "release version" {
  uses = "juankaram/sentry-release@master"
  secrets = ["SENTRY_AUTH_TOKEN"]
  env = {
    SENTRY_ORG     = "foo"
    SENTRY_PROJECT = "bar"
    ENVIRONMENT    = "development"
  }
}

Secrets

  • SENTRY_AUTH_TOKEN - Required. The authentication token to use for all communication with Sentry. (more info)
  • SENTRY_ORG - Required. The slug of the organization to use for a command.
  • SENTRY_PROJECT - Required. The slug of the project to use for a command.

Environment variables

  • RELEASE_VERSION - Optional. Custom version tag. Defaults to ${SENTRY_PROJECT}@$(git describe --always --long).

Attribution

Heavily inspired by GitHub Actions.

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].