We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41438c1 commit a634dd5Copy full SHA for a634dd5
.github/workflows/ci.yml
@@ -40,6 +40,22 @@ jobs:
40
- name: Dotnet Pack
41
run: pwsh pack.ps1
42
43
+ - name: Azure Login with OIDC
44
+ uses: azure/login@v1
45
+ with:
46
+ client-id: ${{ secrets.AZURE_CLIENT_ID }}
47
+ tenant-id: ${{ secrets.AZURE_TENANT_ID }}
48
+ subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
49
+
50
+ - name: Create Subscription Settings File
51
+ run: |
52
+ cat > ${{ github.workspace }}/tests/Integration/appsettings.Secrets.json <<EOF
53
+ {
54
+ "Success": true,
55
+ "SubscriptionId": "${{ secrets.AZURE_SUBSCRIPTION_ID }}"
56
+ }
57
+ EOF
58
59
- name: Dotnet Test
60
run: pwsh test.ps1
61
0 commit comments