Update readme (#49)
* removed dependency to Random * removed dependency to node-fetch * remove node-fetch, add got * updated README * bump version
This commit is contained in:
31
.github/workflows/bump-version.yml
vendored
Normal file
31
.github/workflows/bump-version.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
name: "Bump Version"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "master"
|
||||
|
||||
jobs:
|
||||
bump-version:
|
||||
name: "Bump Version on master"
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: "Checkout source code"
|
||||
uses: "actions/checkout@v2"
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
- name: "cat package.json"
|
||||
run: cat ./package.json
|
||||
- name: "Setup Node.js"
|
||||
uses: "actions/setup-node@v1"
|
||||
with:
|
||||
node-version: 12
|
||||
- name: "Automated Version Bump"
|
||||
uses: "phips28/gh-action-bump-version@master"
|
||||
with:
|
||||
tag-prefix: ''
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: "cat package.json"
|
||||
run: cat ./package.json
|
Reference in New Issue
Block a user