├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── cleanup.yaml │ ├── pipeline.yaml │ └── publish_v1.yaml ├── .gitignore ├── .static ├── destroyed.png ├── finish.png └── start.png ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── dist ├── LICENSES ├── index.js ├── index.js.map └── sourcemap-register.js ├── jest.config.js ├── package.json ├── src ├── lib │ ├── context.ts │ ├── deactivate.ts │ ├── delete.ts │ ├── input.ts │ └── log.ts ├── main.ts └── steps │ ├── finish.ts │ ├── index.ts │ └── start.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/* linguist-generated -diff 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.github/workflows/cleanup.yaml -------------------------------------------------------------------------------- /.github/workflows/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.github/workflows/pipeline.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.github/workflows/publish_v1.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.static/destroyed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.static/destroyed.png -------------------------------------------------------------------------------- /.static/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.static/finish.png -------------------------------------------------------------------------------- /.static/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/.static/start.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | npm run build 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/action.yml -------------------------------------------------------------------------------- /dist/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/dist/LICENSES -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/package.json -------------------------------------------------------------------------------- /src/lib/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/lib/context.ts -------------------------------------------------------------------------------- /src/lib/deactivate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/lib/deactivate.ts -------------------------------------------------------------------------------- /src/lib/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/lib/delete.ts -------------------------------------------------------------------------------- /src/lib/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/lib/input.ts -------------------------------------------------------------------------------- /src/lib/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/lib/log.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/steps/finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/steps/finish.ts -------------------------------------------------------------------------------- /src/steps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/steps/index.ts -------------------------------------------------------------------------------- /src/steps/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/src/steps/start.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobheadxi/deployments/HEAD/tsconfig.json --------------------------------------------------------------------------------