├── .eslintignore ├── .eslintrc.cjs ├── .github ├── assets │ └── icon.png └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── example ├── assets │ ├── cloud-upload.svg │ ├── cloudflare-pages.svg │ ├── terminal.svg │ └── world.svg ├── index.html └── style.css ├── package.json ├── pnpm-lock.yaml ├── src ├── cloudflare.ts ├── comments.ts ├── config.ts ├── deployments.ts ├── globals.ts ├── index.ts └── types.ts ├── tsconfig.json └── tsup.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.github/assets/icon.png -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .husky 4 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /example/assets/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/example/assets/cloud-upload.svg -------------------------------------------------------------------------------- /example/assets/cloudflare-pages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/example/assets/cloudflare-pages.svg -------------------------------------------------------------------------------- /example/assets/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/example/assets/terminal.svg -------------------------------------------------------------------------------- /example/assets/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/example/assets/world.svg -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/example/index.html -------------------------------------------------------------------------------- /example/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/example/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/cloudflare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/cloudflare.ts -------------------------------------------------------------------------------- /src/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/comments.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/deployments.ts -------------------------------------------------------------------------------- /src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/globals.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianGonz97/refined-cf-pages-action/HEAD/tsup.config.ts --------------------------------------------------------------------------------