Skip to content

Commit 3d2c719

Browse files
dschomjcheetham
authored andcommitted
fixup! fixup! release: create initial Windows installer build workflow
We need to log into Azure, and check out the custom Action, before we can download secrets from the KeyVault via `akv-secret`. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent c579c82 commit 3d2c719

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build-git-installers.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,16 @@ jobs:
218218
shell: bash
219219
run: |
220220
git clone --filter=blob:none --single-branch -b main https://github.com/git-for-windows/build-extra /usr/src/build-extra
221+
- name: Log in to Azure
222+
uses: azure/login@v2
223+
if: env.DO_WIN_CODESIGN == 'true'
224+
with:
225+
client-id: ${{ secrets.AZURE_CLIENT_ID }}
226+
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
227+
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
228+
- name: Check out repository (for akv-secret Action)
229+
if: env.DO_WIN_CODESIGN == 'true'
230+
uses: actions/checkout@v4
221231
- name: Download code signing secrets
222232
id: codesign-secrets
223233
if: env.DO_WIN_CODESIGN == 'true'

0 commit comments

Comments
 (0)