-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update electron deps * Turn off open url from notifications * Add url to useful article * Upgrade lockfile * Make auth work again * Upgrade react * Upgrade past broken mem cache version * Remove listeners after login * Handle draft PRs * Fix bug stopping authorization of orgs * Make logout work * Fix build command * Increment schema version * Add github action * Ignore lint warning * Use token for build * Add MacOs and windows * Refactor job * Fix notifications * Remove travis stuff * Remove commented out code
- Loading branch information
Showing
19 changed files
with
32,324 additions
and
1,194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: App build | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'v*.*' | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
jobs: | ||
build-and-create-draft-release: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
node-version: [16.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run ship | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
16 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.