Skip to content

Commit

Permalink
Don't override the Quarkus profile in deploy workflow
Browse files Browse the repository at this point in the history
Only the helm profile should matter, and we don't have a specified
"staging" profile in Quarkus, so using it actually hurts as we "forget"
about properties set in the "prod" profile.
  • Loading branch information
yrodiere committed Feb 20, 2024
1 parent 744b63c commit de8f223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

env:
QUARKUS_PROFILE: ${{ github.ref == 'refs/heads/production' && 'prod' || 'staging' }}
HELM_PROFILE: ${{ github.ref == 'refs/heads/production' && 'prod' || 'staging' }}

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit de8f223

Please sign in to comment.