├── .envrc ├── .github ├── CODE_OF_CONDUCT.md └── workflows │ └── CI.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── .zed └── settings.json ├── LICENSE ├── README.md ├── action.yml ├── bun.lock ├── default.nix ├── eslint.config.js ├── flake.lock ├── flake.nix ├── nix └── devshell.nix ├── package.json ├── renovate.json ├── shell.nix ├── src ├── inputs.ts ├── main.ts └── tools │ ├── imagetools.ts │ └── manifest.ts └── tsconfig.json /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.envrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/action.yml -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/bun.lock -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/default.nix -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/eslint.config.js -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/flake.nix -------------------------------------------------------------------------------- /nix/devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/nix/devshell.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/renovate.json -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/shell.nix -------------------------------------------------------------------------------- /src/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/src/inputs.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/tools/imagetools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/src/tools/imagetools.ts -------------------------------------------------------------------------------- /src/tools/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/src/tools/manifest.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noelware/docker-manifest-action/HEAD/tsconfig.json --------------------------------------------------------------------------------