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:
2021-05-07 23:02:47 +02:00
committed by GitHub
parent 8b3d9b4c78
commit 7bf77284dd
3 changed files with 33 additions and 2 deletions

31
.github/workflows/bump-version.yml vendored Normal file
View 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