Skip to content

Commit

Permalink
Fix GHA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
justinyoo committed Nov 24, 2023
1 parent 4d2eda1 commit dca56c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
image: mcr.microsoft.com/azure-dev-cli-apps:latest

steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4

- name: Login to Azure
uses: azure/login@v1
Expand All @@ -31,9 +31,9 @@ jobs:
shell: pwsh
run: |
azd auth login `
--tenant-id "$env:AZURE_TENANT_ID" `
--client-id "$env:AZURE_CLIENT_ID" `
--federated-credential-provider "github"
--tenant-id "${{ vars.AZURE_TENANT_ID }}" `
--client-id "${{ vars.AZURE_CLIENT_ID }}" `
--federated-credential-provider "${{ vars.AZD_PIPELINE_PROVIDER }}"
- name: Deploy changes to Azure Container Apps
run: azd deploy --no-prompt
Expand Down

0 comments on commit dca56c5

Please sign in to comment.