Skip to content

Commit

Permalink
try appId in MacOS electron builder options
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadsden committed Nov 14, 2024
1 parent fb7bf2a commit ae7164b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ jobs:
tar -czvf threat-dragon-sboms.zip sboms
- name: Create release notes
uses: softprops/action-gh-release@v2.0.4
uses: softprops/action-gh-release@v2.1.0
with:
draft: true
name: "${releaseVersion:1}"
Expand Down
4 changes: 2 additions & 2 deletions release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ For example if RC1, but change for RC2 and so on :

1. `git clone [email protected]:OWASP/threat-dragon.git`
2. `cd threat-dragon`
3. update version, for example `"version": "2.3.0",`, in `td.vue/package.json`
4. ensure `buildState` in `td.vue/package.json` is `-RC1`
3. update version, for example `"version": "2.3.0-RC1",`, in `td.vue/package.json`
4. ensure `buildState` in `td.vue/package.json` is empty ``
5. update version, for example `"version": "2.3.0-RC1",`, in `package.json` and `td.server/package.json`
6. update package lock files: `npm install`
7. `npm run build`
Expand Down
4 changes: 2 additions & 2 deletions td.vue/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion td.vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "threat-dragon",
"productName": "Threat Dragon",
"version": "2.3.0",
"version": "2.3.0-RC2",
"private": true,
"scripts": {
"audit": "npm audit",
Expand Down
2 changes: 1 addition & 1 deletion td.vue/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = {
provider: 'github'
},
mac: {
appBundleId: 'org.owasp.threatdragon',
appId: 'org.owasp.threatdragon',
category: 'public.app-category.developer-tools',
icon: './src/icons/icon.icns',
hardenedRuntime: true,
Expand Down

0 comments on commit ae7164b

Please sign in to comment.