We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f05e9 commit def2f6aCopy full SHA for def2f6a
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,19 @@
1
+name: 🔐 Azure Login Test
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ login-test:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout repo
11
+ uses: actions/checkout@v3
12
13
+ - name: Log in to Azure using AZURE_CREDENTIALS
14
+ uses: azure/login@v1
15
+ with:
16
+ creds: ${{ secrets.AZURE_CREDENTIALS }}
17
18
+ - name: Show current Azure subscription (debug)
19
+ run: az account show
0 commit comments