Skip to content

Commit 4405437

Browse files
committed
Add production env
1 parent 7a84864 commit 4405437

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/azure-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
2323
SENTRY_PROJECT: ${{ vars.SENTRY_PROJECT }}
2424
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
25-
SENTRY_ENV: ${{ github.ref_name == 'main' && 'staging' || 'staging' }}
25+
SENTRY_ENV: ${{ github.ref_name == 'main' && 'production' || 'staging' }}
2626

2727
steps:
2828
- uses: actions/checkout@v4
@@ -55,7 +55,7 @@ jobs:
5555
deploy:
5656
runs-on: ubuntu-latest
5757
needs: build
58-
environment: ${{ github.ref_name == 'main' && 'staging' || 'staging' }}
58+
environment: ${{ github.ref_name == 'main' && 'production' || 'staging' }}
5959
permissions:
6060
id-token: write
6161
contents: read

0 commit comments

Comments
 (0)