-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add npm deploy on release #6
Open
barlock
wants to merge
37
commits into
master
Choose a base branch
from
travis-deploy
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
a05bc04
WIP shamir integration
f494ea0
Merge branch 'master' into setupProject-integrate-shamir
d06003a
get rid of unused vars, fix test case
45d99ed
utility functions and combine function
8e9eef2
writing methods for combine
8db2253
split functions into smaller functions - add more test cases
c4053fa
Use react-native-securerandom as a peer dependency
barlock 6088300
wrote more functions and tests
a3ba7de
fixed typo in lagrange
585a177
Add npm deploy on release
barlock 82770ca
npm registry
ef3e38c
jsdoc
2965580
jsdoc
8f3227f
resolve merge
dab1a61
merged in rnsr-peer
c84a69d
took outbackup files
d9142bc
Merge pull request #7 from ConsenSys/setup-integrate-shamir-partTwo
hadasz c306a3d
integrated in secure storage and private key generation
0b8e4a2
fixed trailing comma
a30c5d5
took out embarassingly shameless plug for self in example app
2f71b3e
altered readme
57a9675
readme
9e8cc8c
added develop to travs.yml
8220a90
Merge pull request #9 from ConsenSys/aes
hadasz 3a85f36
changed npm auth token in travis.yml
b4b5c78
wrote some more tests
23fb731
integrated in IPFS
a71c055
made exported function names more descriptive
e373590
made it prettier
f6efb05
Merge pull request #12 from ConsenSys/ipfs
hadasz d1307d1
added encrypted auth token
0518cbd
deploy to npm on releases to develop
71b7d5e
edited the installation section
0d24995
added usage to readme
35bc2ee
added develop to travis pipeline
d39fab7
Merge pull request #13 from ConsenSys/readme
hadasz fbd1e9b
Merge branch 'develop' into travis-deploy
hadasz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,6 +1,14 @@ | ||
language: node_js | ||
node_js: | ||
- '8' | ||
- '8' | ||
branches: | ||
only: | ||
- master | ||
- master | ||
deploy: | ||
provider: npm | ||
email: hadaszeilberger@gmail.com | ||
api_key: | ||
secure: qg/75hBj7lGkgKt2kuX7uGWQrKhqYLjqQPsDobVkMcnPNGprO8LRYUDDSPMvFbjSeiqdGdwdFgspkOYEljf1vlyS+N3huGm4Hj+WoEe/BW7lZZWROmrQamLChGuZ3H0iFL1SHLe32Ly+7mNvZ9hREPxozPgLRSYLDd+chtxCvvcErO2YFqcKCLjCso3kbDQXO24pbMpD42+ZJEJke0NLBNvbNJ16LG6o3nbvuAVRWd8zWgYafMAbZTbl9bqqXXf+pOf2z2zGtYxVN+rZE7XCW4J3nX4Ya/e1ymyHetugoeTtfxG05HCg5bguznYxJTJaMJSWiQNNCnTQELexZwyTLSPyYsw0dSvf57QSHGyQwxzqadcANn9O6JL6NNROBhpAM6sD52qDBxB9BBEsUwEtXQKMbEOTBQaIHdMKtZMZyinW77/m6XtTzwlmB9CsDN3fUDWAknqY+2foCioZeZvvvGWAbjJQ9eUQL1BUw+/hHtY7cOyvDC1ah4ljnUnIddKlNvZBBxWJbjU7x5S2zhjaayExPaxpd2k/f8RkcxB7URvdCbbxsrzieQ2OPer0ywHAOvyQyFTHtcE3x6PzUeB+dBGkBlS9jMKrR+7HmBp5FafD//uW1k/kMAh3HDkv0THYSYbeNgpmYXRZDLMx45st8SXmoZHF4oNoTHhBxSP5mMo= | ||
on: | ||
branch: develop | ||
tags: true |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you meant to put this into the
develop
branch? As it turns out sense there wasn't a condition before it looks like it was going to do it all releases no matter the branch anyway, so we could just revert this commit too?