Skip to content

Commit

Permalink
Bring back to life (#136)
Browse files Browse the repository at this point in the history
* 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
rkclark authored Sep 23, 2021
1 parent 0b21c67 commit 8a6f5f6
Show file tree
Hide file tree
Showing 19 changed files with 32,324 additions and 1,194 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/app-build.yml
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

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,10 @@ Limitations:

### :shipit: CI/CD and Releasing

Pullp uses Travis for CI/CD. This is configured so that any branch that is pushed with a name in the format vX.X.X will be automatically packaged for Mac and Linux and uploaded to Github as a draft release.

Any branch name that doesn't match will have the test suite and linter run against it.
Pullp uses Github Actions for CI/CD. This is configured so that any branch that is pushed with a name in the format vX.X.X will be automatically packaged for Mac and Linux and uploaded to Github as a draft release.

e.g.

* a branch with a name `v1.9.70` will be created as a draft release with both the Mac and Linux installation files attached.
* a branch with a name `add-new-feature` will not be created as a draft release, but will be tested and linted.
* a branch with a name `v1.9.70` will be created as a draft release with the Windows, Mac and Linux installation files attached.

Once the draft release is on Github it can have release notes added and then be published! :ok_hand:
26 changes: 0 additions & 26 deletions ci-build.sh

This file was deleted.

Loading

0 comments on commit 8a6f5f6

Please sign in to comment.