From d12eb52330766f0a6fce730ebfeacd907c00bd78 Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Mon, 12 Jan 2026 19:42:45 +0100 Subject: [PATCH] ci: add Azure auth test workflow --- .github/workflows/test-azure-auth.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test-azure-auth.yml diff --git a/.github/workflows/test-azure-auth.yml b/.github/workflows/test-azure-auth.yml new file mode 100644 index 00000000..f3fb73c2 --- /dev/null +++ b/.github/workflows/test-azure-auth.yml @@ -0,0 +1,21 @@ +name: Test Azure Auth + +on: + workflow_dispatch: + +jobs: + test-auth: + runs-on: windows-latest + permissions: + id-token: write + contents: read + steps: + - name: Azure Login (OIDC) + uses: azure/login@v2 + with: + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + + - name: Success + run: echo "Azure authentication successful!"