├── .github └── workflows │ ├── main.yml │ └── site2test │ ├── about.html │ ├── css │ └── styles.css │ └── index.html ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── index.js └── package.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/site2test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/.github/workflows/site2test/about.html -------------------------------------------------------------------------------- /.github/workflows/site2test/css/styles.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blueviolet; 3 | } -------------------------------------------------------------------------------- /.github/workflows/site2test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/.github/workflows/site2test/index.html -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovoleksandr/ipfs-pinata-deploy-action/HEAD/package.json --------------------------------------------------------------------------------