Skip to content

Commit

Permalink
fix bud, add missing condition in import codesigning certs step
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Nov 18, 2024
1 parent eeac4a5 commit 53d0f9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion src/main/holochainManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 53d0f9e

Please sign in to comment.