Skip to content

Commit

Permalink
feat: windows codesigning
Browse files Browse the repository at this point in the history
  • Loading branch information
helloanoop committed Feb 26, 2023
1 parent b1edaba commit 2f52ce4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/bruno-app/src/components/Sidebar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const Sidebar = () => {
</GitHubButton>
)}
</div>
<div className="flex flex-grow items-center justify-end text-xs mr-2">v0.10.1</div>
<div className="flex flex-grow items-center justify-end text-xs mr-2">v0.10.2</div>
</div>
</div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions packages/bruno-electron/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ web
out
.env

// certs
sectigo.*

pnpm-lock.yaml
package-lock.json
yarn.lock
2 changes: 2 additions & 0 deletions packages/bruno-electron/electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ linux:
win:
artifactName: ${name}_${version}_${arch}_win.${ext}
icon: resources/icons/png
certificateFile: sectigo.pfx
certificatePassword: "secret"
2 changes: 1 addition & 1 deletion packages/bruno-electron/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.10.1",
"version": "0.10.2",
"name": "bruno",
"description": "Opensource API Client",
"homepage": "https://www.usebruno.com",
Expand Down
3 changes: 3 additions & 0 deletions packages/bruno-electron/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
```bash
# electron dev
npm start

# generate pfx file for signing windows build
openssl pkcs12 -export -inkey sectigo.key -in sectigo.pem -out sectigo.pfx
```

0 comments on commit 2f52ce4

Please sign in to comment.