Skip to content

Commit

Permalink
Remove quotes from deploy policy action inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ebronson68 committed Aug 17, 2023
1 parent bb4af98 commit 3d4c64a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/b2c-build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
with:
folder: "./dist/custom-policies/"
files: "B2C_1A_${{ env.AZURE_B2C_PRODUCT_ID }}_SIGNINSIGNOUT_BASE.xml,B2C_1A_${{ env.AZURE_B2C_PRODUCT_ID }}_SIGNINSIGNOUT_EXTENSIONS.xml,B2C_1A_${{ env.AZURE_B2C_PRODUCT_ID }}_SIGNINSIGNOUT_POLICIES.xml,B2C_1A_${{ env.AZURE_B2C_PRODUCT_ID }}_IMPERSONATION.xml"
tenantDomain: "${{ env.AZURE_B2C_DOMAIN }}"
tenantId: "${{ env.AZURE_B2C_TENANT_ID }}"
clientId: "${{ env.AZURE_B2C_CLIENT_ID }}"
clientSecret: "${{ env.AZURE_B2C_CLIENT_SECRET }}"
tenantDomain: ${{ env.AZURE_B2C_DOMAIN }}
tenantId: ${{ env.AZURE_B2C_TENANT_ID }}
clientId: ${{ env.AZURE_B2C_CLIENT_ID }}
clientSecret: ${{ env.AZURE_B2C_CLIENT_SECRET }}

- name: Upload Auth Assets
uses: azure/powershell@v1
Expand Down

0 comments on commit 3d4c64a

Please sign in to comment.