We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e052b1a commit 06ba233Copy full SHA for 06ba233
1 file changed
.github/workflows/build-and-sign.yml
@@ -33,6 +33,9 @@ jobs:
33
path: src/AClassLibrary/bin/Release/**/*.nupkg
34
35
sign:
36
+ permissions:
37
+ id-token: write # Required for requesting the JWT
38
+
39
runs-on: windows-latest
40
steps:
41
@@ -54,4 +57,10 @@ jobs:
54
57
- name: Install Sign CLI tool
55
58
run: dotnet tool install --tool-path . sign --version 0.9.0-beta.23063.3
56
59
60
+ - name: 'Az CLI login'
61
+ uses: azure/login@v1
62
+ with:
63
+ client-id: ${{ secrets.AZURE_CLIENT_ID }}
64
+ tenant-id: ${{ secrets.AZURE_TENANT_ID }}
65
+ subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
66
0 commit comments