[READ-ONLY] Mirror of https://github.com/probablykasper/readme-template-action. Integrate GitHub API data in your README.md
0

Configure Feed

Select the types of activity you want to include in your feed.

Fixed building to wrong path (github token still being logged)

Kasper (Aug 23, 2020, 9:18 PM +0200) 7ae8cf5e e959f97c

+3 -3
+1 -1
action.yml
··· 16 16 default: README.md 17 17 runs: 18 18 using: node12 19 - main: dist/bundle.js 19 + main: dist/index.js 20 20 branding: 21 21 icon: book-open 22 22 color: gray-dark
dist/bundle.js/index.js dist/index.js
+2 -2
package.json
··· 1 1 { 2 2 "name": "readme-template", 3 3 "scripts": { 4 - "build": "ncc build src/main.js -o dist/bundle.js", 5 - "test": "ncc build src/main.js -o dist/bundle.js && export $(cat .env | xargs) && node dist/bundle.js" 4 + "build": "ncc build src/main.js -o dist", 5 + "test": "ncc build src/main.js -o dist && export $(cat .env | xargs) && node dist/bundle.js" 6 6 }, 7 7 "dependencies": { 8 8 "@actions/core": "^1.2.4",