We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a84864 commit 4405437Copy full SHA for 4405437
.github/workflows/azure-deploy.yml
@@ -22,7 +22,7 @@ jobs:
22
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
23
SENTRY_PROJECT: ${{ vars.SENTRY_PROJECT }}
24
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
25
- SENTRY_ENV: ${{ github.ref_name == 'main' && 'staging' || 'staging' }}
+ SENTRY_ENV: ${{ github.ref_name == 'main' && 'production' || 'staging' }}
26
27
steps:
28
- uses: actions/checkout@v4
@@ -55,7 +55,7 @@ jobs:
55
deploy:
56
runs-on: ubuntu-latest
57
needs: build
58
- environment: ${{ github.ref_name == 'main' && 'staging' || 'staging' }}
+ environment: ${{ github.ref_name == 'main' && 'production' || 'staging' }}
59
permissions:
60
id-token: write
61
contents: read
0 commit comments