├── .gitattributes ├── .github ├── renovate.json5 └── workflows │ ├── release.yaml │ └── ts.yaml ├── .gitignore ├── .node-version ├── LICENSE ├── README.md ├── action.yaml ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── src ├── main.ts └── run.ts ├── tests ├── fixtures │ ├── .dockerignore │ ├── Dockerfile │ ├── example.txt │ ├── example │ │ ├── __tests__ │ │ │ └── dummy │ │ ├── example.txt │ │ └── foo.bar │ └── foo.bar └── run.test.ts ├── tsconfig.json └── vitest.config.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/.github/workflows/ts.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.19.5 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/action.yaml -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/src/run.ts -------------------------------------------------------------------------------- /tests/fixtures/.dockerignore: -------------------------------------------------------------------------------- 1 | *.bar 2 | **/__tests__/ 3 | -------------------------------------------------------------------------------- /tests/fixtures/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/tests/fixtures/Dockerfile -------------------------------------------------------------------------------- /tests/fixtures/example.txt: -------------------------------------------------------------------------------- 1 | hello world 1 2 | -------------------------------------------------------------------------------- /tests/fixtures/example/__tests__/dummy: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /tests/fixtures/example/example.txt: -------------------------------------------------------------------------------- 1 | hello world 2 2 | -------------------------------------------------------------------------------- /tests/fixtures/example/foo.bar: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/fixtures/foo.bar: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/run.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/tests/run.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/int128/kaniko-action/HEAD/vitest.config.ts --------------------------------------------------------------------------------