├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── SECURITY.md ├── build-push-action.png ├── build-push-summary.png ├── dependabot.yml ├── e2e │ ├── distribution │ │ ├── env │ │ └── install.sh │ ├── harbor │ │ ├── env │ │ └── install.sh │ └── nexus │ │ ├── docker-compose.yml │ │ ├── env │ │ └── install.sh └── workflows │ ├── .e2e-run.yml │ ├── ci.yml │ ├── e2e.yml │ ├── pr-assign-author.yml │ ├── publish.yml │ ├── test.yml │ └── validate.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .yarn └── plugins │ └── @yarnpkg │ └── plugin-interactive-tools.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── TROUBLESHOOTING.md ├── __mocks__ └── @actions │ └── github.ts ├── __tests__ ├── context.test.ts └── fixtures │ ├── github-repo.json │ └── secret.txt ├── action.yml ├── codecov.yml ├── dev.Dockerfile ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── docker-bake.hcl ├── jest.config.ts ├── package.json ├── src ├── context.ts ├── main.ts └── state-helper.ts ├── test ├── Dockerfile ├── addhost.Dockerfile ├── cgroup.Dockerfile ├── go │ ├── Dockerfile │ ├── go.mod │ └── main.go ├── lint.Dockerfile ├── multi-sudo.Dockerfile ├── multi.Dockerfile ├── named-context-base.Dockerfile ├── named-context.Dockerfile ├── nocachefilter.Dockerfile ├── proxy.Dockerfile ├── secret.Dockerfile ├── shmsize.Dockerfile └── ulimit.Dockerfile ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/build-push-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/build-push-action.png -------------------------------------------------------------------------------- /.github/build-push-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/build-push-summary.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/e2e/distribution/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/distribution/env -------------------------------------------------------------------------------- /.github/e2e/distribution/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/distribution/install.sh -------------------------------------------------------------------------------- /.github/e2e/harbor/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/harbor/env -------------------------------------------------------------------------------- /.github/e2e/harbor/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/harbor/install.sh -------------------------------------------------------------------------------- /.github/e2e/nexus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/nexus/docker-compose.yml -------------------------------------------------------------------------------- /.github/e2e/nexus/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/nexus/env -------------------------------------------------------------------------------- /.github/e2e/nexus/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/e2e/nexus/install.sh -------------------------------------------------------------------------------- /.github/workflows/.e2e-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/.e2e-run.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/pr-assign-author.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/pr-assign-author.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /__mocks__/@actions/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/__mocks__/@actions/github.ts -------------------------------------------------------------------------------- /__tests__/context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/__tests__/context.test.ts -------------------------------------------------------------------------------- /__tests__/fixtures/github-repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/__tests__/fixtures/github-repo.json -------------------------------------------------------------------------------- /__tests__/fixtures/secret.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/action.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/codecov.yml -------------------------------------------------------------------------------- /dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/dev.Dockerfile -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/package.json -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/state-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/src/state-helper.ts -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/addhost.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/addhost.Dockerfile -------------------------------------------------------------------------------- /test/cgroup.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/cgroup.Dockerfile -------------------------------------------------------------------------------- /test/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/go/Dockerfile -------------------------------------------------------------------------------- /test/go/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/docker/build-push-action/test/go 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /test/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/go/main.go -------------------------------------------------------------------------------- /test/lint.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/lint.Dockerfile -------------------------------------------------------------------------------- /test/multi-sudo.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/multi-sudo.Dockerfile -------------------------------------------------------------------------------- /test/multi.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/multi.Dockerfile -------------------------------------------------------------------------------- /test/named-context-base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/named-context-base.Dockerfile -------------------------------------------------------------------------------- /test/named-context.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/named-context.Dockerfile -------------------------------------------------------------------------------- /test/nocachefilter.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/nocachefilter.Dockerfile -------------------------------------------------------------------------------- /test/proxy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/proxy.Dockerfile -------------------------------------------------------------------------------- /test/secret.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/secret.Dockerfile -------------------------------------------------------------------------------- /test/shmsize.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/shmsize.Dockerfile -------------------------------------------------------------------------------- /test/ulimit.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/test/ulimit.Dockerfile -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/build-push-action/HEAD/yarn.lock --------------------------------------------------------------------------------