Skip to content

Commit

Permalink
Fixed OIDC references
Browse files Browse the repository at this point in the history
  • Loading branch information
Helder Pinto committed Apr 5, 2024
1 parent d071212 commit fc856fd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
environment: prod
runs-on: ubuntu-latest
env:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
AOE_SQL_ADMIN: ${{ secrets.AOE_SQL_ADMIN }}
AOE_SQL_PASSWD: ${{ secrets.AOE_SQL_PASSWD }}
Expand All @@ -31,9 +29,9 @@ jobs:
- name: Login via Az module
uses: azure/login@v2
with:
client-id: $AZURE_CLIENT_ID
tenant-id: $AZURE_TENANT_ID
subscription-id: $AZURE_SUBSCRIPTION_ID
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
enable-AzPSSession: true
- name: Create Deployment Settings JSON file
run: |
Expand Down

0 comments on commit fc856fd

Please sign in to comment.