Use this checklist before pushing a v* tag or dispatching a release build.
npm ci
npm run lint
npm run format:check
npm run typecheck
npm run test:run
npm run test:smoke
npm run test:release-artifacts
npm run test:release-prereqs
npm run test:release-version
npm run check:release-version
cd src-tauri && cargo check && cargo testBefore pushing a release tag, verify it matches every app version source:
npm run check:release-version -- v0.1.4macOS releases require:
APPLE_CERTIFICATEAPPLE_CERTIFICATE_PASSWORDAPPLE_SIGNING_IDENTITYAPPLE_IDAPPLE_PASSWORDAPPLE_TEAM_ID
Windows Authenticode signing is optional for release packaging:
WINDOWS_CODESIGN_CERTIFICATEas a base64-encoded.pfxWINDOWS_CODESIGN_PASSWORD
If the Windows secrets are missing, the workflow publishes unsigned Windows artifacts and prints a
warning in the build log. To enforce signed Windows artifacts for a manual packaging run, dispatch
the workflow with require_windows_signing=true.
Windows portable builds use Enigma Virtual Box. These repository variables are optional:
ENIGMA_VIRTUAL_BOX_INSTALLER_URLENIGMA_VIRTUAL_BOX_INSTALLER_SHA256
If those variables are configured, the build uses the operator-controlled installer mirror and
verifies it before install. If they are missing, the workflow falls back to vendor URLs and prints a
warning in the build log. To require an operator-controlled installer mirror for a manual packaging
run, dispatch the workflow with require_controlled_enigma_download=true.
Release packaging runs for v* tags and manual workflow dispatches. Ordinary main pushes run validation only so they cannot republish an existing version by accident.
Every published release should include:
noder-win.zipnoder-portable.exeSHA256SUMS-windows.txt- macOS
.dmg noder.app.zipSHA256SUMS-macos.txt
Verify checksum manifests against the downloaded files before announcing a release.
The in-app updater requires the platform checksum manifest for available updates and verifies the downloaded update asset before it becomes installable.
After the release workflow publishes assets, verify the published files and checksum manifests:
npm run verify:release-artifacts -- v0.1.4- Install the previous released version on Windows and macOS.
- Start the app outside dev mode.
- Open Settings > Updates and check for updates.
- Download the new update.
- Confirm missing or mismatched checksum manifests keep the update from reaching the ready-to-install state.
- Restart/apply the update from the in-app prompt.
- Confirm the app launches and reports the new version.
- Confirm existing workflows, outputs, settings, and API keys still load.
Windows:
- Extract
noder-win.zip. - Launch
noder.exe. - Save a workflow, relaunch, and confirm it persists.
- Launch
noder-portable.exe. - If signing is enabled, verify the Authenticode signature from file properties or
Get-AuthenticodeSignature.
macOS:
- Mount the DMG.
- Drag noder to Applications.
- Launch the app and confirm Gatekeeper accepts it.
- Save a workflow, relaunch, and confirm it persists.
- Unzip
noder.app.zipand confirm the direct app bundle launches.