├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── error.js ├── figshare.js ├── index.js └── package.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/error.js -------------------------------------------------------------------------------- /figshare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/figshare.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figshare/github-upload-action/HEAD/package.json --------------------------------------------------------------------------------