From 520339d25cb75746897b8790ece79064041a3c0c Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 21 Jun 2026 18:03:06 -0400 Subject: [PATCH] build(windows): use github.workspace path for signing files Update Azure signing step to reference the full workspace path for the Windows driver catalog file (libvirtualhid.cat) by using `${{ github.workspace }}/...`. Also switch the `files` field to a block scalar so the step can accept a multi-line list if needed. This avoids relative path resolution issues on the runner and prevents file-not-found errors during signing. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12609e1..360e4c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -503,7 +503,8 @@ jobs: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} certificate-profile-name: ${{ vars.AZURE_SIGNING_CERT_PROFILE }} endpoint: ${{ vars.AZURE_SIGNING_ENDPOINT }} - files: cmake-build-driver/src/platform/windows/driver/package/Release/libvirtualhid.cat + files: | + ${{ github.workspace }}/cmake-build-driver/src/platform/windows/driver/package/Release/libvirtualhid.cat signing-account-name: ${{ vars.AZURE_SIGNING_ACCOUNT }} - name: Package Windows driver installer