generated from getsentry/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
Environment
How do you use Sentry?
Sentry SaaS (sentry.io)
Which SDK and version?
getsentry/action-release@v1
Steps to Reproduce
I've followed the intructions to configure getsentry/action-release
- I've declared an Internal Integration, with the appropriate permissions (Release - Admin, Organization - Read).
- I've edited my github workflow to fetch all commits from all branches on checkout
- uses: actions/checkout@v2
with:
fetch-depth: 0
- I've added to my github workflow a step:
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
with:
environment: production
- My workflow is scheduled to be executed on commits on the release branch, I've then pushed a few commits.
Expected Result
Release should be created in sentry.io and the related commits should be shown, i.e. the list of new commits, not included in the previous release.
Actual Result
amjanoni, jsmestad, valberg and imolorhe

