Skip to content

Commit

Permalink
sentry release workflow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Dec 11, 2024
1 parent 82d5e7b commit 11a2aea
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,26 @@ env:
build-output: sakura-publish

jobs:
sentry-release:
create-release:
name: Create Release
runs-on: ubuntu-latest

environment:
name: production
url: https://dragonfruit.network/

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Create Sentry release
- name: Create Sentry Release
uses: getsentry/action-release@v1
env:
SENTRY_ORG: dragonfruit
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
SENTRY_PROJECT: ${{ vars.SENTRY_PROJECT }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
with:
projects: sakura
environment: production
ignore_missing: true
version: ${{ github.ref_name }}
ignore_empty: true
version: ${{ github.event.release.tag_name }}

docker-linux:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 11a2aea

Please sign in to comment.