From 53d0f9eed073934b47ccfd77ddd5130b05b2c067 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 18 Nov 2024 12:44:52 +0100 Subject: [PATCH] fix bud, add missing condition in import codesigning certs step --- .github/workflows/release.yaml | 2 +- src/main/holochainManager.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8238fb6..9085715 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - name: Setup for macOS code signing - if: matrix.platform == 'macos-12' || matrix.platform == 'macos-latest' + if: (matrix.platform == 'macos-12' || matrix.platform == 'macos-latest') && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == 'true' uses: matthme/import-codesign-certs@5565bb656f60c98c8fc515f3444dd8db73545dc2 with: p12-file-base64: ${{ secrets.APPLE_CERTIFICATE }} diff --git a/src/main/holochainManager.ts b/src/main/holochainManager.ts index 2584dab..0736bfb 100644 --- a/src/main/holochainManager.ts +++ b/src/main/holochainManager.ts @@ -181,7 +181,7 @@ export class HolochainManager { ) return; if (!networkSeed) { - networkSeed = `${KANGAROO_CONFIG.productName}-${breakingAppVersion(app)}`; + networkSeed = `${KANGAROO_CONFIG.productName}-${breakingAppVersion()}`; } console.log(`Installing happ...`); const pubKey = await this.adminWebsocket.generateAgentPubKey();