Matchu
675c6310fc
Ohh, this isn't a list, got it Yeesh, I didn't understand what I was writing at ALL
21 lines
532 B
YAML
21 lines
532 B
YAML
name: Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sentry:
|
|
name: Checkout latest, and create Sentry release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Create Sentry release
|
|
uses: getsentry/action-release@v1.1.5
|
|
env:
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
|
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
|
with:
|
|
environment: production
|