We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b06f13 commit 864fc3fCopy full SHA for 864fc3f
.github/workflows/build.yml
@@ -17,6 +17,11 @@ jobs:
17
18
steps:
19
- uses: actions/checkout@v4
20
+ - uses: azure/login@v2
21
+ with:
22
+ client-id: ${{ secrets.AZURE_CLIENT_ID }}
23
+ tenant-id: ${{ secrets.AZURE_TENANT_ID }}
24
+ subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
25
- name: Setup .NET
26
uses: actions/setup-dotnet@v4
27
with:
@@ -50,6 +55,8 @@ jobs:
50
55
uses: azure/webapps-deploy@v3
51
56
52
57
app-name: HomesteadGame
53
- publish-profile: ${{ secrets.azureWebAppPublishProfile }}
54
58
package: website
59
+ - name: logout
60
+ run: |
61
+ az logout
62
0 commit comments