├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── release-drafter.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .vscode └── settings.json ├── LICENSE ├── NOTICE ├── README.md ├── action.yml ├── dist └── index.js ├── docs ├── build-and-push-artifact-registry.md ├── build-and-push-ecr.md ├── build-and-push-multiple.md ├── build-with-sbom.md ├── export-to-docker.md └── lint-and-build.md ├── package.json ├── pnpm-lock.yaml ├── src ├── context.ts ├── depot.ts └── index.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## What's Changed 3 | 4 | $CHANGES 5 | -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | pnpm-lock.yaml 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /docs/build-and-push-artifact-registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/docs/build-and-push-artifact-registry.md -------------------------------------------------------------------------------- /docs/build-and-push-ecr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/docs/build-and-push-ecr.md -------------------------------------------------------------------------------- /docs/build-and-push-multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/docs/build-and-push-multiple.md -------------------------------------------------------------------------------- /docs/build-with-sbom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/docs/build-with-sbom.md -------------------------------------------------------------------------------- /docs/export-to-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/docs/export-to-docker.md -------------------------------------------------------------------------------- /docs/lint-and-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/docs/lint-and-build.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/depot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/src/depot.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/depot/build-push-action/HEAD/tsconfig.json --------------------------------------------------------------------------------