Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/electron-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Build Electron App

on:
push:
branches: [ electron ]
branches: [ electron ] # Only build when code lands on 'electron'
pull_request:
branches: [ electron ] # Only build PRs targeting 'electron'

permissions:
contents: write
Expand Down
10 changes: 10 additions & 0 deletions HowToMakeAElectronRelease.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Increase the version number in package.json

"version": "1.0.1" <-- Increase

On GitHub Create a pull request with base: electron and compare: main

When the pull request is merged, the build will start in GitHub actions
and take about 10 minutes to complete. When finished there will be an
unpublished release at https://github.com/pholmq/TSN/releases that can
be edited and published
Loading