summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-10-13 15:11:30 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-10-13 15:11:30 -0400
commitf6d872a027834bc83ee51d488336de933b703f74 (patch)
treece85d21e01334327c7a3637e74b3858bd7c23e3a
parent549e56572b821e8cfc15e591ce13861c2913d7c0 (diff)
PIE-1057: Pass sign-pkg-windows@azure the Azure-related secrets.
-rw-r--r--.github/workflows/build.yaml14
1 files changed, 5 insertions, 9 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 6c88c2ca5c..daa647f257 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -253,18 +253,14 @@ jobs:
needs: build
runs-on: windows
steps:
- - name: Decode certificate file
- shell: bash
- env:
- SIGNING_CERT_WINDOWS: ${{ secrets.SIGNING_CERT_WINDOWS }}
- run: |
- mkdir -p .cert
- echo "$SIGNING_CERT_WINDOWS" | base64 --decode > .cert/authenticode-cert.pfx
-
- name: Sign and package Windows viewer
uses: secondlife/viewer-build-util/sign-pkg-windows@azure
with:
- certificate: .cert/authenticode-cert.pfx
+ vault_uri: "${{ secrets.AZURE_KEY_VAULT_URI }}"
+ cert_name: "${{ secrets.AZURE_CERT_NAME }}"
+ client_id: "${{ secrets.AZURE_CLIENT_ID }}"
+ client_secret: "${{ secrets.AZURE_CLIENT_SECRET }}"
+ tenant_id: "${{ secrets.AZURE_TENANT_ID }}"
sign-and-package-mac:
needs: build