diff options
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 951ddc1c3..98c1a8b11 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -631,6 +631,12 @@ jobs: qbs config defaultProfile qt qbs config --list shell: bash + - name: Setup self-signed certificate + run: | + New-SelfSignedCertificate -DnsName qbs@community.test -Type CodeSigning -CertStoreLocation cert:\CurrentUser\My + Export-Certificate -Cert (Get-ChildItem Cert:\CurrentUser\My -CodeSigningCert)[0] -FilePath qbs-code-signing.crt + Import-Certificate -FilePath .\qbs-code-signing.crt -CertStoreLocation Cert:\CurrentUser\TrustedPublisher + shell: powershell - name: Run Tests run: ${{ matrix.config.script }} ./release/install-root/bin shell: bash |