We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c4aed commit 3e74a9eCopy full SHA for 3e74a9e
1 file changed
.github/workflows/test-e2e.yaml
@@ -0,0 +1,22 @@
1
+name: test-e2e
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+permissions:
7
+ id-token: write
8
+ contents: read
9
10
+jobs:
11
+ test-e2e:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v3
16
17
+ - name: Azure login
18
+ uses: azure/login@v2
19
+ with:
20
+ client-id: ${{ secrets.AZURE_CLIENT_ID }}
21
+ tenant-id: ${{ secrets.AZURE_TENANT_ID }}
22
+ subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
0 commit comments