summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index b1dbc08011..d04e105443 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -267,8 +267,18 @@ 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@main
+ with:
+ certificate: .cert/authenticode-cert.pfx
sign-and-package-mac:
needs: build