Fix GitHub Action for Sentry, attempt 2
Lol I missed a lot of the steps, huh?
This commit is contained in:
parent
d7a4ddb907
commit
1c7d027465
1 changed files with 12 additions and 7 deletions
19
.github/workflows/release.yml
vendored
19
.github/workflows/release.yml
vendored
|
@ -7,10 +7,15 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
sentry:
|
sentry:
|
||||||
- name: Create Sentry release
|
- name: Create Sentry release
|
||||||
uses: getsentry/action-release@v1.1.5
|
runs-on: ubuntu-latest
|
||||||
env:
|
steps:
|
||||||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
- name: Checkout code
|
||||||
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
|
uses: actions/checkout@v2
|
||||||
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
- name: Create Sentry release
|
||||||
with:
|
uses: getsentry/action-release@v1.1.5
|
||||||
environment: production
|
env:
|
||||||
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||||
|
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
|
||||||
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
||||||
|
with:
|
||||||
|
environment: production
|
||||||
|
|
Loading…
Reference in a new issue