Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/6.5.2 #825

Merged
merged 5 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ jobs:
- name: Install node modules
run: npm install

- name: Delete current release assets
uses: Kellojo/delete-release-assets-action@v1.9
with:
delete-only-drafts: true
github-access-token: ${{ secrets.GITHUB_TOKEN }}

- name: Linux build
run: npm run dist:linux -- --publish always
env:
Expand Down
8 changes: 4 additions & 4 deletions build-resources/scripts/afterSignHook.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const electronNotarize = require('@electron/notarize');

async function note(params) {
// Only notarize the app on Mac OS only.
// Only notarize the app on macOS.
if (process.platform !== 'darwin') {
return;
}
Expand All @@ -22,9 +22,9 @@ async function note(params) {
tool: 'notarytool',
appBundleId: 'NetworkCanvasArchitect',
appPath,
appleApiKey: '~/.private_keys/AuthKey_J58L47W6H9.p8',
appleApiKeyId: 'J58L47W6H9', // This is taken from the filename of the .p8 file in your icloud drive
appleApiIssuer: '69a6de92-60bf-47e3-e053-5b8c7c11a4d1',
appleApiKey: '~/.private_keys/AuthKey_A78M67RCH9.p8',
appleApiKeyId: 'A78M67RCH9', // Taken from https://appstoreconnect.apple.com/access/integrations/api
appleApiIssuer: '69a6de92-60bf-47e3-e053-5b8c7c11a4d1',// As above
});

console.log('Done notarizing Architect');
Expand Down
2 changes: 1 addition & 1 deletion network-canvas
27 changes: 12 additions & 15 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "network-canvas-architect",
"version": "6.5.1",
"version": "6.5.2",
"productName": "Network Canvas Architect",
"description": "A tool for building Network Canvas interviews.",
"author": "Complex Data Collective <info@networkcanvas.com>",
Expand Down Expand Up @@ -49,7 +49,7 @@
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@codaco/ui": "^5.8.5",
"@electron/notarize": "^1.2.3",
"@electron/notarize": "^2.3.0",
"@material-ui/icons": "^4.11.2",
"@tippyjs/react": "^4.2.5",
"animejs": "^2.2.0",
Expand Down
2 changes: 1 addition & 1 deletion public/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "network-canvas-architect",
"version": "6.5.1",
"version": "6.5.2",
"productName": "Network Canvas Architect",
"description": "A tool for building Network Canvas interviews.",
"author": "Complex Data Collective",
Expand Down