Skip to content

Commit

Permalink
Merge branch 'master' of github.com:BarryCarlyon/quickpassword
Browse files Browse the repository at this point in the history
  • Loading branch information
BarryCarlyon committed May 27, 2021
2 parents b6e7958 + 0186d6a commit 5125289
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
with:
node-version: 12
- run: npm ci
- run: npm test

publish-gpr:
needs: build
Expand All @@ -35,7 +34,9 @@ jobs:
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
scope: '@BarryCarlyon'
- run: npm ci
- run: echo "registry=https://npm.pkg.github.com/@BarryCarlyon\nname=@BarryCarlyon/quickpassword" >> .npmrc
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GHTOKEN}}
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
A very very quick and dirty password encrypter using bcypt based on [this Stackoverflow Question](http://stackoverflow.com/questions/14015677/node-js-encryption-of-passwords)
A very very quick and dirty password encrypter using bcrypt based on [this Stackoverflow Question](http://stackoverflow.com/questions/14015677/node-js-encryption-of-passwords)

# Updating node

Expand Down Expand Up @@ -31,3 +31,7 @@ If you update Node, you will need to run `npm install` in order to rebuild this
// ret contains encrypted password for storage
}
});

# Upgrading node

If/when you upgrade node, this module (well bcrypt) will need to be recompiled, `npm rebuild` should get you going!

0 comments on commit 5125289

Please sign in to comment.